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-1010-g0d5228


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-1010-g0d52289
Date: Fri, 12 Dec 2014 05:43:04 +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  0d52289482d468c8566976d77c0c6a6a4e602add (commit)
       via  769d7886cceec048dcd4aa67236b5971891418c3 (commit)
      from  fa9d1a09cfe9e7386746a2c6523b5503d1b4aff9 (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=0d52289482d468c8566976d77c0c6a6a4e602add

commit 0d52289482d468c8566976d77c0c6a6a4e602add
Merge: fa9d1a0 769d788
Author: Arnold D. Robbins <address@hidden>
Date:   Fri Dec 12 07:42:54 2014 +0200

    Merge branch 'gawk-4.1-stable'


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

commit 769d7886cceec048dcd4aa67236b5971891418c3
Author: Arnold D. Robbins <address@hidden>
Date:   Fri Dec 12 07:42:32 2014 +0200

    Small doc fix.

diff --git a/doc/ChangeLog b/doc/ChangeLog
index 0a52dfb..ede811e 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2014-12-12         Arnold D. Robbins     <address@hidden>
+
+       * gawktexi.in: Minor fix.
+       Thanks to Teri Price <address@hidden>.
+
 2014-12-10         Arnold D. Robbins     <address@hidden>
 
        * gawktexi.in: More minor fixes.
diff --git a/doc/gawk.info b/doc/gawk.info
index fe080ce..d6fccec 100644
--- a/doc/gawk.info
+++ b/doc/gawk.info
@@ -11850,7 +11850,7 @@ undefined.  Thus, avoid writing programs that assume 
that parameters
 are evaluated from left to right or from right to left.  For example:
 
      i = 5
-     j = atan2(i++, i *= 2)
+     j = atan2(++i, i *= 2)
 
    If the order of evaluation is left to right, then `i' first becomes
 6, and then 12, and `atan2()' is called with the two arguments 6 and
diff --git a/doc/gawk.texi b/doc/gawk.texi
index 03f8bd4..3e6fb5d 100644
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@ -16989,7 +16989,7 @@ right to left.  For example:
 
 @example
 i = 5
-j = atan2(i++, i *= 2)
+j = atan2(++i, i *= 2)
 @end example
 
 If the order of evaluation is left to right, then @code{i} first becomes
diff --git a/doc/gawktexi.in b/doc/gawktexi.in
index 53b24f3..61575e4 100644
--- a/doc/gawktexi.in
+++ b/doc/gawktexi.in
@@ -16272,7 +16272,7 @@ right to left.  For example:
 
 @example
 i = 5
-j = atan2(i++, i *= 2)
+j = atan2(++i, i *= 2)
 @end example
 
 If the order of evaluation is left to right, then @code{i} first becomes

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

Summary of changes:
 doc/ChangeLog   |    5 +++++
 doc/gawk.info   |    2 +-
 doc/gawk.texi   |    2 +-
 doc/gawktexi.in |    2 +-
 4 files changed, 8 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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