* q2c.c: Change DEBUGGING macro to DUMP_TOKENS for clarity and to
authorBen Pfaff <blp@gnu.org>
Sat, 15 Apr 2006 21:31:29 +0000 (21:31 +0000)
committerBen Pfaff <blp@gnu.org>
Sat, 15 Apr 2006 21:31:29 +0000 (21:31 +0000)
avoid dumping all the tokens to stdout when --enable-debug is passed
to configure.

src/language/lexer/ChangeLog
src/language/lexer/q2c.c

index 65198388f6d5289c3b9a66a0f975eb4f54e86d65..6fc3eae93b6f93e85dc3c2b32280984e26eb19d0 100644 (file)
@@ -1,3 +1,9 @@
+Sat Apr 15 14:30:35 2006  Ben Pfaff  <blp@gnu.org>
+
+       * q2c.c: Change DEBUGGING macro to DUMP_TOKENS for clarity and to
+       avoid dumping all the tokens to stdout when --enable-debug is
+       passed to configure.
+
 Fri Mar 10 08:29:25 2006  Ben Pfaff  <blp@gnu.org>
 
        * q2c.c: (dump_free) Free proper member for var list, instead of
index c4bfef6dfc1f03d583aa6d70e0dddd6545f430a9..72ce7addc9f6ebcdf9d2a047e66c9c0c22347cb0 100644 (file)
@@ -336,7 +336,7 @@ find_symbol (int x)
   return iter;
 }
 
-#if DEBUGGING 
+#if DUMP_TOKENS 
 /* Writes a printable representation of the current token to
    stdout. */
 static void
@@ -354,7 +354,7 @@ dump_token (void)
       printf ("PUNCT\t%c\n", token);
     }
 }
-#endif /* DEBUGGING */
+#endif /* DUMP_TOKENS */
 
 /* Reads a token from the input file. */
 static int
@@ -404,7 +404,7 @@ lex_get (void)
   else
     token = *cp++;
   
-#if DEBUGGING
+#if DUMP_TOKENS
   dump_token ();
 #endif