CVSROOT: /sources/m4 Module name: m4 Changes by: Eric Blake <ericb> 06/08/23 11:39:26
Index: m4/m4module.h =================================================================== RCS file: /sources/m4/m4/m4/m4module.h,v retrieving revision 1.77 retrieving revision 1.78 diff -u -b -r1.77 -r1.78 --- m4/m4module.h 9 Aug 2006 21:33:24 -0000 1.77 +++ m4/m4module.h 23 Aug 2006 11:39:26 -0000 1.78 @@ -268,7 +268,7 @@ M4_DEBUG_TRACE_CALLID = (1 << 9), /* V: very verbose -- print everything */ - M4_DEBUG_TRACE_VERBOSE = (~0) + M4_DEBUG_TRACE_VERBOSE = ((1 << 10) - 1) }; /* default flags -- equiv: aeq */ @@ -277,7 +277,7 @@ #define m4_is_debug_bit(C,B) (BIT_TEST (m4_get_debug_level_opt (C), (B))) -extern int m4_debug_decode (m4 *, const char *); +extern int m4_debug_decode (m4 *, int, const char *); extern bool m4_debug_set_output (m4 *, const char *); extern void m4_debug_message_prefix (m4 *);
