122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
END;
%Shut the output according to the language.
GENTRANSHUT "$1_$rep.body";
EOF
if [ "$lang" = "m" ]; then
lang_header $1 rep m 'mttx,mttu,mttt,mttpar' $out > $1_$rep.m
echo '#====== Start of code ======#' >> $1_$rep.m
cat $1_$rep.body | mtt_p2m >> $1_$rep.m
fi
# Now invoke the standard error handling.
|
|
|
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
END;
%Shut the output according to the language.
GENTRANSHUT "$1_$rep.body";
EOF
if [ "$lang" = "m" ]; then
lang_header $1 $rep m 'mttx,mttu,mttt,mttpar' $out > $1_$rep.m
echo '#====== Start of code ======#' >> $1_$rep.m
cat $1_$rep.body | mtt_p2m >> $1_$rep.m
fi
# Now invoke the standard error handling.
|