m4-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Changes to m4/m4/macro.c,v


From: Eric Blake
Subject: Changes to m4/m4/macro.c,v
Date: Sat, 10 Jun 2006 13:41:07 +0000

CVSROOT:        /sources/m4
Module name:    m4
Changes by:     Eric Blake <ericb>      06/06/10 13:41:06

Index: m4/macro.c
===================================================================
RCS file: /sources/m4/m4/m4/macro.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -b -r1.44 -r1.45
--- m4/macro.c  1 May 2005 11:10:05 -0000       1.44
+++ m4/macro.c  10 Jun 2006 13:41:06 -0000      1.45
@@ -1,5 +1,5 @@
 /* GNU m4 -- A simple macro processor
-   Copyright (C) 1989, 1990, 1991, 1992, 1993, 1994, 2001
+   Copyright (C) 1989, 1990, 1991, 1992, 1993, 1994, 2001, 2006
    Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
@@ -44,8 +44,12 @@
                                  m4_symbol_value **);
 static void    trace_post       (m4 *context, const char *, int, int,
                                  m4_symbol_value **, const char *);
-static void    trace_format     (m4 *context, const char *fmt, ...)
-                                                       M4_GNUC_PRINTF(2, 3);
+
+/* It would be nice if we could use M4_GNUC_PRINTF(2, 3) on
+   trace_format, but since we don't accept the same set of modifiers,
+   it would lead to compiler warnings.  */
+static void    trace_format     (m4 *context, const char *fmt, ...);
+
 static void    trace_header     (m4 *, int);
 static void    trace_flush      (m4 *);
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]