Overview
Comment: | Added `-' to the component regexp. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
959996e6d416de007bb1cfbcb2990bab |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-19 10:48:57 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-19
| ||
13:30:54 | New CLEAN target. check-in: cf3a402c21 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:48:57 | Added `-' to the component regexp. check-in: 959996e6d4 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:05:04 | Initial revision check-in: 6cae592550 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/rbg_fig2m.awk from [0595e9c3fe] to [a3858c6c60].
︙ | ︙ | |||
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.9 1996/08/09 08:23:11 peter ## Fixed bug: ports not recognised. ## ## Revision 1.8 1996/08/05 20:12:43 peter ## Now writes a _fig.fig file. ## ## Revision 1.7 1996/08/05 18:44:56 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.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 ## Now writes a _fig.fig file. ## ## Revision 1.7 1996/08/05 18:44:56 peter |
︙ | ︙ | |||
341 342 343 344 345 346 347 | default_cr = ""; default_args = ""; delimiter = ":"; repetition_delimiter = "*"; repetition_regexp = "\*"; q = "\047"; terminator = "\\001"; | | | 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | default_cr = ""; default_args = ""; 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; |
︙ | ︙ |