]> Shamusworld >> Repos - rmac/blobdiff - error.c
Possible fix for bug #72 (no warning on unclosed .ifs).
[rmac] / error.c
diff --git a/error.c b/error.c
index 4f65cc42c50abc9601a051d688b508d51a99553e..83a6f372f73e869e6e3a9abc2ec9c12ffe0c16a9 100644 (file)
--- a/error.c
+++ b/error.c
@@ -3,7 +3,7 @@
 // ERROR.C - Error Handling
 // Copyright (C) 199x Landon Dyer, 2011 Reboot and Friends
 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
-// Source Utilised with the Kind Permission of Landon Dyer
+// Source utilised with the kind permission of Landon Dyer
 //
 
 #include "error.h"
@@ -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)
 {