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. d45dee9add229d


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.0-stable, updated. d45dee9add229d64ca875c11c78392e1a80dc100
Date: Tue, 18 Oct 2011 10:35:18 +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  d45dee9add229d64ca875c11c78392e1a80dc100 (commit)
      from  b8fb7b2d4287058c9d2fab1a871e9181840279be (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=d45dee9add229d64ca875c11c78392e1a80dc100

commit d45dee9add229d64ca875c11c78392e1a80dc100
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Oct 18 12:35:02 2011 +0200

    Another non-MBS fix in dfa.c.

diff --git a/ChangeLog b/ChangeLog
index c25bab8..4731843 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,8 @@
        * builtin.c (do_strftime): Add check for negative / overflowed
        time_t value with fatal error. Thanks to Hermann Peifer
        <address@hidden> for the bug report.
+       * dfa.c (setbit_wc): Non-MBS version. Add a return false
+       since VMS compiler doesn't understand that abort doesn't return.
 
 2011-10-10         Arnold D. Robbins     <address@hidden>
 
diff --git a/dfa.c b/dfa.c
index 19bbaa3..a909f68 100644
--- a/dfa.c
+++ b/dfa.c
@@ -616,7 +616,12 @@ setbit_c (int b, charclass c)
 }
 #else
 # define setbit_c setbit
-static inline bool setbit_wc (wint_t wc, charclass c) { abort (); }
+static inline bool setbit_wc (wint_t wc, charclass c)
+{
+  abort ();
+  /*NOTREACHED*/
+  return false;
+}
 #endif
 
 /* Like setbit_c, but if case is folded, set both cases of a letter.  For

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

Summary of changes:
 ChangeLog |    2 ++
 dfa.c     |    7 ++++++-
 2 files changed, 8 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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