Index: mttroot/mtt/bin/trans/rbg2abg_m ================================================================== --- mttroot/mtt/bin/trans/rbg2abg_m +++ mttroot/mtt/bin/trans/rbg2abg_m @@ -9,10 +9,13 @@ ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ +## Revision 1.14 2000/09/14 08:41:35 peterg +## Strip off the additional direction info from rbonds +## ## Revision 1.13 2000/03/16 12:53:26 peterg ## Added copy of the %VAR declarations ## Put in the endfunction statement ## ## Revision 1.12 1998/07/28 19:07:48 peterg @@ -154,11 +157,12 @@ EOF # Append any VAR declarations if [ -f "$1_lbl.txt" ]; then echo "# Explicit variable declarations" >> $1_abg.m - grep '^[\s]*[%|#]VAR' $1_lbl.txt | tr '%' '#' >> $1_abg.m + grep '^[\s]*[%|#][V|P]AR' $1_lbl.txt | tr '%' '#' >> $1_abg.m + grep '^[\s]*[%|#]NOT[V|P]AR' $1_lbl.txt | tr '%' '#' >> $1_abg.m fi ## Close off the function echo "endfunction" >> $1_abg.m