Overview
| Comment: | Added none to no cr list |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
0db1c54fd756422902b4d74787e392ca |
| User & Date: | gawthrop@users.sourceforge.net on 1996-11-04 14:51:14.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1996-11-05
| ||
| 09:19:28 | Initial revision check-in: 682c998490 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1996-11-04
| ||
| 14:51:14 | Added none to no cr list check-in: 0db1c54fd7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1996-11-03
| ||
| 21:19:55 | Generates generic commands in form $1name$2. check-in: bfa856761e user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/awk/lbl2cr.awk
from [7eeeb5d468]
to [602cb6cd9b].
| ︙ | ︙ | |||
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$
###############################################################
function exact_match(name1, name2) {
return ((match(name1,name2)>0)&&(length(name1)==length(name2)))
}
| > > > | 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.2 1996/11/02 10:22:22 peterg
# Now ignores SS lines.
#
###############################################################
function exact_match(name1, name2) {
return ((match(name1,name2)>0)&&(length(name1)==length(name2)))
}
|
| ︙ | ︙ | |||
31 32 33 34 35 36 37 |
return matched;
}
BEGIN {
comment = "%";
arg_delimiter = ",";
| | | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
return matched;
}
BEGIN {
comment = "%";
arg_delimiter = ",";
not_a_cr = "effort flow state internal external zero none";
numeric = "[0-9]";
symbol_count = 0;
symbols = "";
}
{
if ( (match($1,comment)==0) && (NF>=3) ) {
cr = $2;
|
| ︙ | ︙ |