Index: mttroot/mtt/bin/trans/mtt_make_sympar ================================================================== --- mttroot/mtt/bin/trans/mtt_make_sympar +++ mttroot/mtt/bin/trans/mtt_make_sympar @@ -11,10 +11,13 @@ ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ +## Revision 1.9 2001/07/23 05:16:39 geraint +## Simple filter for Reduce reserved words in sympar. +## ## Revision 1.8 2001/07/04 06:00:12 gawthrop ## Fixed a funny with tr - changed SEPS and REPS - something to do with ^ ## ## Revision 1.7 2001/04/13 07:14:12 geraint ## Implemented lower level lbl.txt recognition of #NOT[V|P]AR @@ -109,13 +112,12 @@ tr [a-z] [A-Z]` flag=0 for reserved_word in ${reserved_words}; do for sympar_word in ${sympar_words}; do if [ ${sympar_word} = ${reserved_word} ]; then - echo "*** MTT Error: ${sympar_word} is reserved (Reduce)" - flag=1 + echo "" + echo "*** MTT Warning:" + echo " ${sympar_word} is reserved (Reduce)" + echo "" fi done done -if [ ${flag} -eq 1 ]; then - exit 1; -fi