gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, gawk-4.0-stable, updated. 4321116ab54f51


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.0-stable, updated. 4321116ab54f5177ae4a4d1dcd2a7dd7e1bd6419
Date: Tue, 07 Feb 2012 20:48:26 +0000

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, gawk-4.0-stable has been updated
       via  4321116ab54f5177ae4a4d1dcd2a7dd7e1bd6419 (commit)
      from  d4dffed3fadd53db64a4a6a9c760820fdfa96e96 (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=4321116ab54f5177ae4a4d1dcd2a7dd7e1bd6419

commit 4321116ab54f5177ae4a4d1dcd2a7dd7e1bd6419
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Feb 7 22:47:39 2012 +0200

    Minor bug fix, new .gmo files.

diff --git a/ChangeLog b/ChangeLog
index 54f96cc..166ebc7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-02-07         Arnold D. Robbins     <address@hidden>
+
+       * main.c (main): Move init of `output_fp' to before parsing of
+       program so that error messages from msg.c don't dump core.
+       Thanks to Michael Haardt <address@hidden>.
+
 2012-01-13         Arnold D. Robbins     <address@hidden>
 
        * dfa.c [is_valid_unibtye_character]: Fix from GNU grep to 
diff --git a/main.c b/main.c
index 43a3e4a..e148b2c 100644
--- a/main.c
+++ b/main.c
@@ -304,6 +304,8 @@ main(int argc, char **argv)
        /* init array handling. */
        array_init();
 
+       output_fp = stdout;
+
        /* we do error messages ourselves on invalid options */
        opterr = FALSE;
 
@@ -676,7 +678,6 @@ out:
                setlocale(LC_NUMERIC, "");
 #endif
 
-       output_fp = stdout;
        interpret(code_block);
 
        if (do_profiling) {
diff --git a/po/de.gmo b/po/de.gmo
index 0a64b29..6c6bbcd 100644
Binary files a/po/de.gmo and b/po/de.gmo differ
diff --git a/po/es.gmo b/po/es.gmo
index 2bd17e2..407c31a 100644
Binary files a/po/es.gmo and b/po/es.gmo differ
diff --git a/po/fr.gmo b/po/fr.gmo
index 39b7ec4..0a64d1b 100644
Binary files a/po/fr.gmo and b/po/fr.gmo differ

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

Summary of changes:
 ChangeLog |    6 ++++++
 main.c    |    3 ++-
 po/de.gmo |  Bin 52166 -> 52578 bytes
 po/es.gmo |  Bin 51471 -> 51849 bytes
 po/fr.gmo |  Bin 53311 -> 53704 bytes
 5 files changed, 8 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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