Overview
Comment: | Now just writes out the cr name. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
55bdf759410e342385171aa21e308f27 |
User & Date: | gawthrop@users.sourceforge.net on 1997-03-20 12:05:31 |
Other Links: | branch diff | manifest | tags |
Context
1997-03-20
| ||
14:36:56 | Includes the sympar.h file check-in: 0f6bed5ddb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
12:05:31 | Now just writes out the cr name. check-in: 55bdf75941 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:25:55 | Initial revision check-in: 3321797112 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/lbl2cr.awk from [c4fe91c826] to [ba5795ecc8].
︙ | ︙ | |||
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.3 1996/11/04 14:51:14 peterg ## Added none to no cr list ## # Revision 1.2 1996/11/02 10:22:22 peterg # Now ignores SS lines. # ############################################################### | > > > | 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.4 1996/11/09 20:38:45 peterg # Put in new lib pat # ## Revision 1.3 1996/11/04 14:51:14 peterg ## Added none to no cr list ## # Revision 1.2 1996/11/02 10:22:22 peterg # Now ignores SS lines. # ############################################################### |
︙ | ︙ | |||
61 62 63 64 65 66 67 | } } END { # create the _cr file if (symbol_count>0) { split(symbols,symbol); | < | > | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | } } END { # create the _cr file if (symbol_count>0) { split(symbols,symbol); for (i = 1; i <= symbol_count; i++) { #printf("$MTTPATH/lib/cr/r/%s.cr ", symbol[i]); printf("%s\n", symbol[i]); } } } |