diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-10 16:59:57 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-10-10 16:59:57 +0300 |
commit | f6f4abd11c600e16a2fe868bdd0bbda5e616f0c8 (patch) | |
tree | f0db7ac56850ec3cda2e97720b9d7a1d0d30b492 /doc/gawktexi.in | |
parent | 7b6a89830ee4fca90b004317796d9964f1322532 (diff) | |
parent | 9b692963b78835970c991ea76965df82548a7da3 (diff) | |
download | egawk-f6f4abd11c600e16a2fe868bdd0bbda5e616f0c8.tar.gz egawk-f6f4abd11c600e16a2fe868bdd0bbda5e616f0c8.tar.bz2 egawk-f6f4abd11c600e16a2fe868bdd0bbda5e616f0c8.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'doc/gawktexi.in')
-rw-r--r-- | doc/gawktexi.in | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/doc/gawktexi.in b/doc/gawktexi.in index 2d7bcd69..cbc28419 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -12278,6 +12278,11 @@ As of @value{PVERSION} 4.2, @command{gawk} continues to use locale collating order for @code{<}, @code{<=}, @code{>}, and @code{>=} only in POSIX mode. +@ignore +References: http://austingroupbugs.net/view.php?id=963 +and http://austingroupbugs.net/view.php?id=1070. +@end ignore + @node Boolean Ops @subsection Boolean Expressions @cindex and Boolean-logic operator @@ -21219,14 +21224,14 @@ in memory as a single string. A straightforward but naive way to do that might be as follows: @example -function readfile(file, tmp, contents) +function readfile1(file, tmp, contents) @{ if ((getline tmp < file) < 0) return - contents = tmp - while (getline tmp < file) > 0) - contents = contents RT tmp + contents = tmp RT + while ((getline tmp < file) > 0) + contents = contents tmp RT close(file) return contents |