gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-2460-g4271b9


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-2460-g4271b99
Date: Mon, 3 Apr 2017 15:16:28 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, master has been updated
       via  4271b995d64430e794e344f0c4985162eb991052 (commit)
      from  22efd6f841af3073c89fbaac79482e925d5d5da3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=4271b995d64430e794e344f0c4985162eb991052

commit 4271b995d64430e794e344f0c4985162eb991052
Author: Arnold D. Robbins <address@hidden>
Date:   Mon Apr 3 22:16:08 2017 +0300

    Fix a message in extension/inplace.c.

diff --git a/extension/ChangeLog b/extension/ChangeLog
index f1622b6..9ea2ea9 100644
--- a/extension/ChangeLog
+++ b/extension/ChangeLog
@@ -1,3 +1,9 @@
+2017-04-03         Arnold D. Robbins     <address@hidden>
+
+       * inplace.c (inplace_end): Correct the function name in the
+       wrong argument count error message. Thanks to Dan Neilsen
+       for the report.
+
 2017-03-07         Andrew J. Schorr     <address@hidden>
 
        * Makefile.am (pkgextension_LTLIBRARIES): Remove testext.la, since it
diff --git a/extension/inplace.c b/extension/inplace.c
index ecc3afd..f89017b 100644
--- a/extension/inplace.c
+++ b/extension/inplace.c
@@ -208,7 +208,7 @@ do_inplace_end(int nargs, awk_value_t *result, struct 
awk_ext_func *unused)
        assert(result != NULL);
 
        if (nargs != 2)
-               fatal(ext_id, _("inplace_begin: expects 2 arguments but called 
with %d"), nargs);
+               fatal(ext_id, _("inplace_end: expects 2 arguments but called 
with %d"), nargs);
 
        if (! get_argument(0, AWK_STRING, &filename))
                fatal(ext_id, _("inplace_end: cannot retrieve 1st argument as a 
string filename"));

-----------------------------------------------------------------------

Summary of changes:
 extension/ChangeLog | 6 ++++++
 extension/inplace.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
gawk



reply via email to

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