Overview
Comment: | Now uses new mtt_strip_cr in common with mtt_make_sympar |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
fee4e440940351e1f5891a6825e8ee66 |
User & Date: | gawthrop@users.sourceforge.net on 2000-10-16 09:15:41 |
Other Links: | branch diff | manifest | tags |
Context
2000-10-16
| ||
09:41:29 | Fixed bug with printing a blank line. check-in: 2466289e97 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:15:41 | Now uses new mtt_strip_cr in common with mtt_make_sympar check-in: fee4e44094 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
09:10:08 | Now strips out "unwanted" bits frome the _aliased.txt file check-in: 3115446ff7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/abg2sympar_m2txt from [929d167ef3] to [79a422f5f6].
︙ | ︙ | |||
45 46 47 48 49 50 51 | { ## Explicit VAR declarations if (match($1,var)>0) print $2 "\t" system_name; ## Implicit declarations from the arg list if (match($1,"arg")>0) { args=substr($3,2,length($3)-3); | < < < | | < < | | | | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | { ## Explicit VAR declarations if (match($1,var)>0) print $2 "\t" system_name; ## Implicit declarations from the arg list if (match($1,"arg")>0) { args=substr($3,2,length($3)-3); print args } }' system_name=$2 |\ grep -v '^\$' | mtt_strip_args |\ sort -u > $1_sympar.txt 2>mtt_error.txt # Now invoke the standard error handling. mtt_error mtt_error.txt |