]> git.sur5r.net Git - cc65/commitdiff
Fixed multi line macro bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 24 Jun 2001 16:08:35 +0000 (16:08 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 24 Jun 2001 16:08:35 +0000 (16:08 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@772 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/scanner.c

index 27b300ceba810598377313383b8dea775f1c5025..2009826ea9a24c465a1f5e148e7e40fe8a92752e 100644 (file)
@@ -178,7 +178,7 @@ static int SkipWhite (void)
            }
            Preprocess ();
        }
-       if (CurC == ' ' || CurC == '\r') {
+       if (IsSpace (CurC)) {
            NextChar ();
        } else {
            return 1;
@@ -403,7 +403,7 @@ void NextToken (void)
 {
     ident token;
 
-    /* We have to skip white space here before shifting tokens, since the 
+    /* We have to skip white space here before shifting tokens, since the
      * tokens and the current line info is invalid at startup and will get
      * initialized by reading the first time from the file. Remember if
      * we were at end of input and handle that later.
@@ -420,7 +420,7 @@ void NextToken (void)
     NextTok.LI = UseLineInfo (GetCurLineInfo ());
 
     /* Now handle end of input. */
-    if (GotEOF) {      
+    if (GotEOF) {
        /* End of file reached */
        NextTok.Tok = TOK_CEOF;
        return;