diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-05-10 16:31:38 -0400 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-05-10 16:31:38 -0400 |
commit | 9ca04e641b11ac80dba4913283ebe9444e8692bb (patch) | |
tree | 5771c0d728a4b3911724ae9fdae2c41d371b98e4 /doc/gawktexi.in | |
parent | 02e868874af2b01dfec60881716a36d2bb97328c (diff) | |
parent | faa9ebbae62d1539177991b8b48c31a93b4faf3e (diff) | |
download | egawk-9ca04e641b11ac80dba4913283ebe9444e8692bb.tar.gz egawk-9ca04e641b11ac80dba4913283ebe9444e8692bb.tar.bz2 egawk-9ca04e641b11ac80dba4913283ebe9444e8692bb.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'doc/gawktexi.in')
-rw-r--r-- | doc/gawktexi.in | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/doc/gawktexi.in b/doc/gawktexi.in index ab28b1c3..f9dba03b 100644 --- a/doc/gawktexi.in +++ b/doc/gawktexi.in @@ -59,7 +59,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 @@ -5635,7 +5635,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 @@ -5660,6 +5660,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 |