summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1993-05-12 19:44:41 +0000
committerRoland McGrath <roland@redhat.com>1993-05-12 19:44:41 +0000
commit534926ac7a327eefa74de83bd6cd12c613aa862c (patch)
tree94ec34fba95df839d0c2d4adfde7947a5abc16e6
parent55802662228944b9f4206a96c3031be81797726f (diff)
downloadgunmake-534926ac7a327eefa74de83bd6cd12c613aa862c.tar.gz
Formerly function.c.~26~
-rw-r--r--function.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/function.c b/function.c
index 8ba2662..76fb73d 100644
--- a/function.c
+++ b/function.c
@@ -1120,9 +1120,15 @@ handle_function (op, stringp)
}
if (count >= 0)
- makefile_fatal (reading_filename, *reading_lineno_ptr,
- "unterminated call to function `%s': missing `%c'",
- function_table[code].name, closeparen);
+ {
+ static const char errmsg[]
+ = "unterminated call to function `%s': missing `%c'";
+ if (reading_filename == 0)
+ fatal (errmsg, function_table[code].name, closeparen);
+ else
+ makefile_fatal (reading_filename, *reading_lineno_ptr, errmsg,
+ function_table[code].name, closeparen);
+ }
/* We found the end; expand the function call. */