m4-commit
[Top][All Lists]
Advanced

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

Changes to m4/src/Attic/macro.c,v [branch-1_4]


From: Eric Blake
Subject: Changes to m4/src/Attic/macro.c,v [branch-1_4]
Date: Fri, 23 Jun 2006 13:06:13 +0000

CVSROOT:        /sources/m4
Module name:    m4
Branch:         branch-1_4
Changes by:     Eric Blake <ericb>      06/06/23 13:06:10

Index: src/macro.c
===================================================================
RCS file: /sources/m4/m4/src/Attic/macro.c,v
retrieving revision 1.1.1.1.2.4
retrieving revision 1.1.1.1.2.5
diff -u -b -r1.1.1.1.2.4 -r1.1.1.1.2.5
--- src/macro.c 15 Jun 2006 21:51:37 -0000      1.1.1.1.2.4
+++ src/macro.c 23 Jun 2006 13:06:10 -0000      1.1.1.1.2.5
@@ -92,7 +92,7 @@
 
     default:
       M4ERROR ((warning_status, 0,
-               "INTERNAL ERROR: Bad token type in expand_token ()"));
+               "INTERNAL ERROR: bad token type in expand_token ()"));
       abort ();
     }
 }
@@ -158,7 +158,7 @@
 
        case TOKEN_EOF:
          M4ERROR ((EXIT_FAILURE, 0,
-                   "ERROR: EOF in argument list"));
+                   "ERROR: end of file in argument list"));
          break;
 
        case TOKEN_WORD:
@@ -176,7 +176,7 @@
 
        default:
          M4ERROR ((warning_status, 0,
-                   "INTERNAL ERROR: Bad token type in expand_argument ()"));
+                   "INTERNAL ERROR: bad token type in expand_argument ()"));
          abort ();
        }
 
@@ -252,7 +252,7 @@
 
     default:
       M4ERROR ((warning_status, 0,
-               "INTERNAL ERROR: Bad symbol type in call_macro ()"));
+               "INTERNAL ERROR: bad symbol type in call_macro ()"));
       abort ();
     }
 }
@@ -283,7 +283,7 @@
   expansion_level++;
   if (expansion_level > nesting_limit)
     M4ERROR ((EXIT_FAILURE, 0,
-             "ERROR: Recursion limit of %d exceeded, use -L<N> to change it",
+             "ERROR: recursion limit of %d exceeded, use -L<N> to change it",
              nesting_limit));
 
   macro_call_id++;




reply via email to

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