X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=procln.c;h=5ae5c5e080e501f7f0801220e6407306ef65ae83;hp=9987aad70ef4c836d81a1fb08ea4fc8f95aae579;hb=75969398d9b8a9f82ea76fc4e4cbfb97b11160a4;hpb=6c1bc379012b1c1ca369e71e39509f3538042382;ds=sidebyside diff --git a/procln.c b/procln.c index 9987aad..5ae5c5e 100644 --- a/procln.c +++ b/procln.c @@ -171,7 +171,8 @@ loop1: // Internal line processing loop // First token MUST be a symbol if (*tok != SYMBOL) { - error(syntax_error); +// error(syntax_error); + error("syntax error; expected symbol"); goto loop; } @@ -215,7 +216,8 @@ as68label: // Next token MUST be a symbol if (*tok++ != SYMBOL) { - error(syntax_error); +// error(syntax_error); + error("syntax error; expected symbol"); goto loop; }