Overview
Comment: | Reinstated the second column of the sympar file - the system name |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
595cf61fa1f5a3b31f4682aa54399474 |
User & Date: | gawthrop@users.sourceforge.net on 1998-07-15 09:26:50 |
Other Links: | branch diff | manifest | tags |
Context
1998-07-16
| ||
07:35:10 | Aliased version check-in: bbdde13faa user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1998-07-15
| ||
09:26:50 | Reinstated the second column of the sympar file - the system name check-in: 595cf61fa1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1998-07-13
| ||
09:56:31 | Back under RCS for major revision check-in: 929cf15e79 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/lbl2sympar.awk from [af7880c407] to [2bb4150078].
︙ | ︙ | |||
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.11 1998/05/13 12:39:23 peterg ## Added `unknown' to list od names to avoid ## ## Revision 1.10 1998/03/26 13:03:23 peterg ## Changed SS field fudge. ## ## Revision 1.9 1998/02/16 16:09:57 peterg | > > > | 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.12 1998/07/04 11:09:46 peterg ## Cleaned up - assumes new lbl style for SS ## ## Revision 1.11 1998/05/13 12:39:23 peterg ## Added `unknown' to list od names to avoid ## ## Revision 1.10 1998/03/26 13:03:23 peterg ## Changed SS field fudge. ## ## Revision 1.9 1998/02/16 16:09:57 peterg |
︙ | ︙ | |||
82 83 84 85 86 87 88 | for (i = 1; i <= n_args; i++) { first_char = substr(arg[i],1,1); if ( (matches(not_an_arg,arg[i])==0) \ && (match(first_char,numeric)==0) \ && (match(arg[i],"\\$")==0) \ && (length(arg[i])>0) \ && (matches(symbols,arg[i]) ==0) ) { | | | 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | for (i = 1; i <= n_args; i++) { first_char = substr(arg[i],1,1); if ( (matches(not_an_arg,arg[i])==0) \ && (match(first_char,numeric)==0) \ && (match(arg[i],"\\$")==0) \ && (length(arg[i])>0) \ && (matches(symbols,arg[i]) ==0) ) { print arg[i] "\t" name; } } } } |