diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-12-12 07:42:54 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-12-12 07:42:54 +0200 |
commit | 0d52289482d468c8566976d77c0c6a6a4e602add (patch) | |
tree | 72dec7d7f77b518f99d4e75a3844f009b924886e /doc/gawk.info | |
parent | fa9d1a09cfe9e7386746a2c6523b5503d1b4aff9 (diff) | |
parent | 769d7886cceec048dcd4aa67236b5971891418c3 (diff) | |
download | egawk-0d52289482d468c8566976d77c0c6a6a4e602add.tar.gz egawk-0d52289482d468c8566976d77c0c6a6a4e602add.tar.bz2 egawk-0d52289482d468c8566976d77c0c6a6a4e602add.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'doc/gawk.info')
-rw-r--r-- | doc/gawk.info | 2 |
1 files changed, 1 insertions, 1 deletions
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 |