diff options
-rw-r--r-- | doc/ChangeLog | 5 | ||||
-rw-r--r-- | doc/gawk.info | 2 | ||||
-rw-r--r-- | doc/gawk.texi | 2 | ||||
-rw-r--r-- | doc/gawktexi.in | 2 |
4 files changed, 8 insertions, 3 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index 3f140317..cf320744 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2014-12-12 Arnold D. Robbins <arnold@skeeve.com> + + * gawktexi.in: Minor fix. + Thanks to Teri Price <tjp212@lehigh.edu>. + 2014-12-10 Arnold D. Robbins <arnold@skeeve.com> * gawktexi.in: More minor fixes. diff --git a/doc/gawk.info b/doc/gawk.info index bac9b228..8e5e6b29 100644 --- a/doc/gawk.info +++ b/doc/gawk.info @@ -11865,7 +11865,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 710a3c4f..4b6e68c1 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -17005,7 +17005,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 1d91c5bd..f330e8e0 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -16288,7 +16288,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 |