CVSROOT: /sources/m4
Module name: m4
Branch: branch-1_4
Changes by: Eric Blake <ericb> 06/08/04 13:19:41
Index: src/input.c
===================================================================
RCS file: /sources/m4/m4/src/Attic/input.c,v
retrieving revision 1.1.1.1.2.17
retrieving revision 1.1.1.1.2.18
diff -u -b -r1.1.1.1.2.17 -r1.1.1.1.2.18
--- src/input.c 3 Aug 2006 13:31:40 -0000 1.1.1.1.2.17
+++ src/input.c 4 Aug 2006 13:19:41 -0000 1.1.1.1.2.18
@@ -537,8 +537,8 @@
if (ch == CHAR_EOF)
/* current_file changed to "NONE" if we see CHAR_EOF, use the
previous value we stored earlier. */
- error_at_line (warning_status, 0, file, line,
- "Warning: end of file treated as newline");
+ M4ERROR_AT_LINE ((warning_status, 0, file, line,
+ "Warning: end of file treated as newline"));
}
@@ -808,8 +808,8 @@
else
/* current_file changed to "NONE" if we see CHAR_EOF, use the
previous value we stored earlier. */
- error_at_line (EXIT_FAILURE, 0, file, line,
- "ERROR: end of file in comment");
+ M4ERROR_AT_LINE ((EXIT_FAILURE, 0, file, line,
+ "ERROR: end of file in comment"));
type = TOKEN_STRING;
}
@@ -890,8 +890,8 @@
if (ch == CHAR_EOF)
/* current_file changed to "NONE" if we see CHAR_EOF, use
the previous value we stored earlier. */
- error_at_line (EXIT_FAILURE, 0, file, line,
- "ERROR: end of file in string");
+ M4ERROR_AT_LINE ((EXIT_FAILURE, 0, file, line,
+ "ERROR: end of file in string"));
if (MATCH (ch, rquote.string, TRUE))
{