CVSROOT: /sources/m4 Module name: m4 Changes by: Eric Blake <ericb> 06/09/05 23:16:40
Index: m4/m4module.h =================================================================== RCS file: /sources/m4/m4/m4/m4module.h,v retrieving revision 1.82 retrieving revision 1.83 diff -u -b -r1.82 -r1.83 --- m4/m4module.h 5 Sep 2006 13:25:24 -0000 1.82 +++ m4/m4module.h 5 Sep 2006 23:16:39 -0000 1.83 @@ -286,9 +286,11 @@ M4_DEBUG_TRACE_INPUT = (1 << 8), /* x: add call id to trace output */ M4_DEBUG_TRACE_CALLID = (1 << 9), + /* m: trace module actions */ + M4_DEBUG_TRACE_MODULE = (1 << 10), /* V: very verbose -- print everything */ - M4_DEBUG_TRACE_VERBOSE = ((1 << 10) - 1) + M4_DEBUG_TRACE_VERBOSE = ((1 << 11) - 1) }; /* default flags -- equiv: aeq */ @@ -300,6 +302,8 @@ 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 *); +extern void m4_debug_message (m4 *, int, const char *, ...) + M4_GNUC_PRINTF (3, 4);
