cppinit.c (CAT): The argument list of this macro may not contain spaces !
authorPhilippe De Muyter <phdm@macqel.be>
Tue, 30 Nov 1999 08:36:13 +0000 (09:36 +0100)
committerJeff Law <law@gcc.gnu.org>
Tue, 30 Nov 1999 08:36:13 +0000 (01:36 -0700)
        * cppinit.c (CAT): The argument list of this macro may not contain
        spaces !

From-SVN: r30718

gcc/ChangeLog
gcc/cppinit.c

index a0376e069f1a127ae08f568c2467193ff38a93e8..dff51d3d83e2954ae4449c6b9fd8ebc5fc89b448 100644 (file)
@@ -1,3 +1,8 @@
+Tue Nov 30 01:34:47 1999  Philippe De Muyter  <phdm@macqel.be>
+
+       * cppinit.c (CAT): The argument list of this macro may not contain
+       spaces !
+
 1999-11-29  David S. Miller  <davem@redhat.com>
 
        Move quantity tables and register equivalence chains into
index 15c7938831e4690cdb8563f658005ad44c9676ec..4343b23ab836dc5b6bcce0c11a95f069a07801c1 100644 (file)
@@ -223,7 +223,7 @@ unsigned char id[256] = {
 #define END };
 #else
 #define TABLE(id) unsigned char id[256] = { 0 }; \
-static void CAT(init_, id) PARAMS ((void)) { \
+static void CAT(init_,id) PARAMS ((void)) { \
 unsigned char *x = id;
 #define s(p, v) x[p] = v;
 #define END }