aboutsummaryrefslogtreecommitdiffstats
path: root/doc/gawk.texi
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-05-10 16:31:10 -0400
committerArnold D. Robbins <arnold@skeeve.com>2018-05-10 16:31:10 -0400
commitfaa9ebbae62d1539177991b8b48c31a93b4faf3e (patch)
treebb6b08a048f9a2487277acfdc20781014a78efb6 /doc/gawk.texi
parentd2262d743f156fcca499b0c1b1706717a686aaa2 (diff)
parent85c609c42657b36dbfbde7528d9d6fd998da0fe4 (diff)
downloadegawk-faa9ebbae62d1539177991b8b48c31a93b4faf3e.tar.gz
egawk-faa9ebbae62d1539177991b8b48c31a93b4faf3e.tar.bz2
egawk-faa9ebbae62d1539177991b8b48c31a93b4faf3e.zip
Merge branch 'gawk-4.2-stable'
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r--doc/gawk.texi11
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi
index 107a7b03..17ba8c2d 100644
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@ -64,7 +64,7 @@
@c applies to and all the info about who's publishing this edition
@c These apply across the board.
-@set UPDATE-MONTH March, 2018
+@set UPDATE-MONTH May, 2018
@set VERSION 4.2
@set PATCHLEVEL 1
@@ -5808,7 +5808,7 @@ POSIX standard.
@item @code{[:print:]} @tab Printable characters (characters that are not control characters)
@item @code{[:punct:]} @tab Punctuation characters (characters that are not letters, digits,
control characters, or space characters)
-@item @code{[:space:]} @tab Space characters (such as space, TAB, and formfeed, to name a few)
+@item @code{[:space:]} @tab Space characters (these are: space, TAB, newline, carriage return, formfeed and vertical tab)
@item @code{[:upper:]} @tab Uppercase alphabetic characters
@item @code{[:xdigit:]} @tab Characters that are hexadecimal digits
@end multitable
@@ -5833,6 +5833,13 @@ range of the ASCII character set. Use a complemented character list
(@samp{[^\x00-\x7F]}) to match any single-byte characters that are not
in the ASCII range.
+@quotation NOTE
+As of this writing (May 2018), Brian Kernighan's @command{awk} treats
+@code{[:blank:]} like @code{[:space:]}, incorrectly matching
+more characters than it should. We have submitted a patch to him,
+and hope that this will be fixed.
+@end quotation
+
@cindex bracket expressions, collating elements
@cindex bracket expressions, non-ASCII
@cindex collating elements