X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=error.c;h=75efaadfa50c0077e705555e7be6ccdcaf9415d9;hp=4f65cc42c50abc9601a051d688b508d51a99553e;hb=3f2bccb78ab4cd59654d521c8aedfe5512ee6608;hpb=090bda1c00a18b3f616e734090ba456a461879a1 diff --git a/error.c b/error.c index 4f65cc4..75efaad 100644 --- a/error.c +++ b/error.c @@ -26,7 +26,6 @@ int at_eol(void) if (*tok != EOL) { -// error("syntax error"); sprintf(msg, "syntax error. expected EOL, found $%X ('%c')", *tok, *tok); error(msg); } @@ -36,7 +35,7 @@ int at_eol(void) // -// Cannot Create a File +// Cannot create a file // void cantcreat(const char * fn) { @@ -46,7 +45,7 @@ void cantcreat(const char * fn) // -// Setup for Error Message +// Setup for error message // o Create error listing file (if necessary) // o Set current filename // @@ -76,7 +75,7 @@ void err_setup(void) // -// Display Error Message +// Display error message // int error(const char * s) {