diff options
author | Paul Smith <psmith@gnu.org> | 2005-03-04 12:52:32 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2005-03-04 12:52:32 +0000 |
commit | 28078b517a3151f18cf427be87600803251d732b (patch) | |
tree | d963a5674f982ccc6070f1596b8286239f84f5b8 /function.c | |
parent | cb2f20026908d5c6e48e2cd3e3e65b5f67498d02 (diff) | |
download | gunmake-28078b517a3151f18cf427be87600803251d732b.tar.gz |
- Missing docs for $|
- Update NEWS and AUTHORS files.
- Fix support request #103195.
- Apply patch #3679
- Fix handling of sys_siglist in autoconf/etc.
Diffstat (limited to 'function.c')
-rw-r--r-- | function.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -772,8 +772,8 @@ func_wordlist (char *o, char **argv, const char *funcname UNUSED) start = atoi (argv[0]); if (start < 1) - fatal (reading_file, "invalid first argument to `wordlist' function: '%d'", - message, start); + fatal (reading_file, + "invalid first argument to `wordlist' function: `%d'", start); count = atoi (argv[1]) - start + 1; |