Index: mttroot/mtt/bin/trans/abg2sympar_m2txt
==================================================================
--- mttroot/mtt/bin/trans/abg2sympar_m2txt
+++ mttroot/mtt/bin/trans/abg2sympar_m2txt
@@ -7,13 +7,12 @@
 # Bourne shell script: abg2sympar_m2txt
 
 # Label file to symbolic parameters conversion
 # Copyright (C) 2000 by Peter J. Gawthrop
 
-
 # Inform user
-echo "Creating $1_sympar.txt"
+#echo "Creating $1_sympar.txt"
 
 rm -f mtt_error
 # Separation characters
 SEPS='=*;+/()-'
 # Replace by ,
@@ -47,23 +46,22 @@
   ## 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 $3, args
+    args=substr($3,2,length($3)-3);
     N=split(args, arg, ",");
     for (i=1;i<=N;i++){
-      print arg[i];
       if ( (length(arg[i])>0)&&(matches(not_an_arg,arg[i])==0)&&(match(arg[i],"^[0-9]+[.]*")==0) ){
         print arg[i] "\t" system_name;
       }
     }
   }
-}' system_name=$1  |\
-grep -v '^\$' |\
-sort -u > $1_sympar.txt 2>mtt_error.txt
+}' system_name=$2 |\
+grep -v '^\$' #|\
+#sort -u > $1_sympar.txt 2>mtt_error.txt
 
 # Now invoke the standard error handling.
-mtt_error mtt_error.txt
+# mtt_error mtt_error.txt