CVSROOT:        /sources/m4
Module name:    m4
Changes by:     Eric Blake <ericb>      07/10/23 14:17:55

Index: m4/syntax.c
===================================================================
RCS file: /sources/m4/m4/m4/syntax.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -b -r1.24 -r1.25
--- m4/syntax.c 7 Aug 2007 03:15:27 -0000       1.24
+++ m4/syntax.c 23 Oct 2007 14:17:54 -0000      1.25
@@ -220,7 +220,7 @@
     syntax->table[ch] = (syntax->table[ch] & M4_SYNTAX_MASKS) | code;
 
 #ifdef DEBUG_SYNTAX
-  fprintf(stderr, "Set syntax %o %c = %04X\n",
+  xfprintf(stderr, "Set syntax %o %c = %04X\n",
          ch, isprint(ch) ? ch : '-',
          syntax->table[ch]);
 #endif
@@ -235,7 +235,7 @@
   syntax->table[ch] &= ~code;
 
 #ifdef DEBUG_SYNTAX
-  fprintf(stderr, "Unset syntax %o %c = %04X\n",
+  xfprintf(stderr, "Unset syntax %o %c = %04X\n",
          ch, isprint(ch) ? ch : '-',
          syntax->table[ch]);
 #endif


Reply via email to