Overview
Comment: | Changed a comment to be more accurate. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
252807ac6d8b6cbfb7d2924c8ff5596b |
User & Date: | gawthrop@users.sourceforge.net on 1999-11-19 04:00:26 |
Other Links: | branch diff | manifest | tags |
Context
1999-11-22
| ||
00:23:18 | Removed debugging check-in: b9523bb2d0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1999-11-19
| ||
04:00:26 | Changed a comment to be more accurate. check-in: 252807ac6d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1999-11-18
| ||
23:37:59 | Changed size to 18pt check-in: 05b0bb81c4 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/rbg_fig2m.awk from [8edaddadea] to [b1555f0e30].
︙ | ︙ | |||
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.34 1999/02/17 06:23:49 peterg ## Bugs arising from Fig 3.2 fixed ## ## -- depth now zero modulo 10 (3.2 defaults to depth 100!!) ## -- horrible bug using = in place of == fixed. ## ## Revision 1.33 1998/08/10 15:51:06 peterg | > > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.35 1999/07/25 22:19:45 peterg ## Fixed bug with false objects when compound objects present. ## -- Reset object to 0 after processing text. ## ## Revision 1.34 1999/02/17 06:23:49 peterg ## Bugs arising from Fig 3.2 fixed ## ## -- depth now zero modulo 10 (3.2 defaults to depth 100!!) ## -- horrible bug using = in place of == fixed. ## ## Revision 1.33 1998/08/10 15:51:06 peterg |
︙ | ︙ | |||
225 226 227 228 229 230 231 | { i_label++; name = $1; CR = $2; args = $3; label[i_label,1] = name; label[i_label,2] = CR; | | | 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | { i_label++; name = $1; CR = $2; args = $3; label[i_label,1] = name; label[i_label,2] = CR; label[i_label,3] = args; } } function fig_info() { # Grabs the fig-file information for a component return(sprintf("%s %s %s %s %s %s %s %s %s %s %s ", \ $1, $2, $3, $4, $5, $6, $7, \ |
︙ | ︙ | |||
625 626 627 628 629 630 631 | print strokes[i] >> b_file; printf("];\n") >> b_file; printf("rcomponents = [") >> b_file; j = 0; | | | | 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 | print strokes[i] >> b_file; printf("];\n") >> b_file; printf("rcomponents = [") >> b_file; j = 0; # Do the port components, in order of appearance, first. for (i = 1; i <= i_label; i++) { name = label[i,1]; if (match(name,port_regexp)) write_component(i); } # Now do the ordinary components, in order of appearance, last. for (i = 1; i <= i_label; i++) { name = label[i,1]; if (!match(name,port_regexp)) write_component(i); } printf("];\n") >> b_file; |
︙ | ︙ |