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. 095574f6fe71432416f5be6


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. 095574f6fe71432416f5be6756ef882ceb148942
Date: Tue, 12 Feb 2013 18:04:05 +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, master has been updated
       via  095574f6fe71432416f5be6756ef882ceb148942 (commit)
       via  033a052f4eed4a5d3a7963e91a4844ebc3bebc00 (commit)
       via  de872f0548039885f3bd4b460845915350ad5acf (commit)
       via  b2f8d3e75f58946803addd6c17a02699178bfc21 (commit)
      from  71b40c8909aff9d8d817d04be5b1b917352f6712 (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=095574f6fe71432416f5be6756ef882ceb148942

commit 095574f6fe71432416f5be6756ef882ceb148942
Merge: de872f0 033a052
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Feb 12 20:03:43 2013 +0200

    Merge branch 'gawk-4.0-stable'


http://git.sv.gnu.org/cgit/gawk.git/commit/?id=de872f0548039885f3bd4b460845915350ad5acf

commit de872f0548039885f3bd4b460845915350ad5acf
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Feb 12 20:01:49 2013 +0200

    Update TODO.

diff --git a/TODO b/TODO
index bee961c..3423388 100644
--- a/TODO
+++ b/TODO
@@ -1,4 +1,4 @@
-Sun Dec 16 18:04:50 IST 2012
+Tue Feb 12 19:51:04 IST 2013
 ============================
 
 There were too many files tracking different thoughts and ideas for
@@ -65,6 +65,9 @@ Major New Features
                indirect calls of extension functions
                indirect through array elements, not just scalar variables
 
+       Fix the early chapters in the doc with more up-to-date examples.
+       No-one uses Bulletin Board Systems anymore.
+
        Rework management of array index storage. (Partially DONE.)
 
        Consider using an atom table for all string array indices.
@@ -84,7 +87,7 @@ Things To Think About That May Never Happen
        ??? Gnulib
 
        Consider making shadowed variables a warning and not
-       a fatal warning when -lint=fatal.
+       a fatal warning when --lint=fatal.
 
        Similar for extra parameters in a function call.
 

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=b2f8d3e75f58946803addd6c17a02699178bfc21

commit b2f8d3e75f58946803addd6c17a02699178bfc21
Author: Arnold D. Robbins <address@hidden>
Date:   Tue Feb 12 20:01:25 2013 +0200

    Improve bisonfix.awk. Fix errors in ChangeLog.

diff --git a/ChangeLog b/ChangeLog
index 887f857..3db54e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-02-12         Arnold D. Robbins     <address@hidden>
+
+       * bisonfix.awk: Comment out code for fixing contined #if
+       statements. It is likely not needed anymore. Leave it there in
+       case I'm wrong.
+
 2013-02-06         Arnold D. Robbins     <address@hidden>
 
        * builtin.c (printf_common): Move nargs > 0 check into assert.
@@ -8,6 +14,10 @@
        * main.c (main): Remove undocumented -m option which was for
        compatibility with BWK awk. His awk dropped it back in 2007.
 
+2013-02-03         Arnold D. Robbins     <address@hidden>
+
+       * configure.ac: Add Automake test for cross compiling.
+
 2013-01-31         Arnold D. Robbins     <address@hidden>
 
        * regcomp.c, regex.c, regex_internal.c, regexec.c: Update
@@ -21,25 +31,16 @@
        (clean_state_log_if_needed): Likewise.
        (get_subexp): Likewise.`
 
-<<<<<<< HEAD
-2013-02-03         Arnold D. Robbins     <address@hidden>
-
-       * configure.ac: Add Automake test for cross compiling.
-
-=======
->>>>>>> gawk-4.0-stable
 2013-01-31         Arnold D. Robbins     <address@hidden>
 
        * dfa.c: Include "dfa.h" which includes regex.h after limits.h
        so that RE_DUP_MAX gets the correct value. Especially needed on
        OpenVMS. Thanks to Anders Wallin.
-<<<<<<< HEAD
+
        * main.c (version): Print out API version numbers if DYNAMIC.
        Helpful also for knowing if to run the shlib tests.
 
        * configure: Regenerated after change in m4/readline.m4.
-=======
->>>>>>> gawk-4.0-stable
 
 2013-01-31         Arnold D. Robbins     <address@hidden>
 
diff --git a/bisonfix.awk b/bisonfix.awk
index abb4f90..87fe9ee 100644
--- a/bisonfix.awk
+++ b/bisonfix.awk
@@ -21,20 +21,21 @@
 
 BEGIN { sfile = ARGV[1] ; ARGV[1] = "-" ; ARGC = 2 }
 
-/^#if.*\\$/ {
-       line = $0
-       sub(/\\$/, "", line)
-       getline line2
-       while (line2 ~ /\\$/) {
-               line = line line2
-               sub(/\\$/, "", line)
-               getline line2
-       }
-       line = line line2
-       sub(/\\$/, "", line)
-       print line
-       next
-}
+# 2/2013: Comment this out to see if any system still needs it.
+# /^#if.*\\$/ {
+#      line = $0
+#      sub(/\\$/, "", line)
+#      getline line2
+#      while (line2 ~ /\\$/) {
+#              line = line line2
+#              sub(/\\$/, "", line)
+#              getline line2
+#      }
+#      line = line line2
+#      sub(/\\$/, "", line)
+#      print line
+#      next
+# }
 
 /^#line.*y\.tab\.c/    { sub(/y.tab/, sfile) }
 

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

Summary of changes:
 ChangeLog    |   21 +++++++++++----------
 README.cvs   |    8 +++-----
 TODO         |    7 +++++--
 bisonfix.awk |   29 +++++++++++++++--------------
 4 files changed, 34 insertions(+), 31 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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