mirror of
https://github.com/mirror/make.git
synced 2025-01-04 01:10:26 +08:00
Formerly function.c.~26~
This commit is contained in:
parent
5580266222
commit
534926ac7a
12
function.c
12
function.c
@ -1120,9 +1120,15 @@ handle_function (op, stringp)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (count >= 0)
|
if (count >= 0)
|
||||||
makefile_fatal (reading_filename, *reading_lineno_ptr,
|
{
|
||||||
"unterminated call to function `%s': missing `%c'",
|
static const char errmsg[]
|
||||||
function_table[code].name, closeparen);
|
= "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. */
|
/* We found the end; expand the function call. */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user