Overview
| Comment: | Fixed error in nonport_regexp. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
d30f540f11777343be70ed17d041df9f |
| User & Date: | gawthrop@users.sourceforge.net on 1996-08-24 16:30:12.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1996-08-24
| ||
| 17:57:41 | Removed `touch mtt_info.txt' check-in: c4d8ee5f6c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 16:30:12 | Fixed error in nonport_regexp. check-in: d30f540f11 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 15:06:22 | Write `END;' at end to please reduce. check-in: 4ba1d5dac1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/rbg_fig2m.awk
from [a3858c6c60]
to [533b846c9b].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.10 1996/08/19 09:03:13 peter ## Parses repetative components: ie suffixed by *n. ## ## Revision 1.9 1996/08/09 08:23:11 peter ## Fixed bug: ports not recognised. ## ## Revision 1.8 1996/08/05 20:12:43 peter | > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.11 1996/08/19 10:48:57 peter ## Added `-' to the component regexp. ## ## Revision 1.10 1996/08/19 09:03:13 peter ## Parses repetative components: ie suffixed by *n. ## ## Revision 1.9 1996/08/09 08:23:11 peter ## Fixed bug: ports not recognised. ## ## Revision 1.8 1996/08/05 20:12:43 peter |
| ︙ | ︙ | |||
346 347 348 349 350 351 352 | delimiter = ":"; repetition_delimiter = "*"; repetition_regexp = "\*"; q = "\047"; terminator = "\\001"; component_regexp = "[^0-9a-zA-Z_:\*-]"; port_regexp = "\[[0-9]*\]"; | | | 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
delimiter = ":";
repetition_delimiter = "*";
repetition_regexp = "\*";
q = "\047";
terminator = "\\001";
component_regexp = "[^0-9a-zA-Z_:\*-]";
port_regexp = "\[[0-9]*\]";
nonport_regexp = "[a-zA-Z]";
isa_fig_file = 0;
min_line_length = 10;
object = 0;
polyline = 2;
sub_polyline=1;
firm_style = 0;
|
| ︙ | ︙ |