diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-02-13 14:48:53 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-02-13 14:48:53 (GMT) |
commit | a6f84305e408210e5c738997584666d228771561 (patch) | |
tree | e51c224d7f764da23d324ba3470b9be16ae2e744 /doc | |
parent | 86ab5ec38040d7b1af0eb41e0158a4ee7d06d52f (diff) | |
download | tcl-a6f84305e408210e5c738997584666d228771561.zip tcl-a6f84305e408210e5c738997584666d228771561.tar.gz tcl-a6f84305e408210e5c738997584666d228771561.tar.bz2 |
Fix [Bug 1614687]
Diffstat (limited to 'doc')
-rw-r--r-- | doc/re_syntax.n | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/re_syntax.n b/doc/re_syntax.n index 334375c..bba917b 100644 --- a/doc/re_syntax.n +++ b/doc/re_syntax.n @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: re_syntax.n,v 1.9 2006/11/15 09:23:02 dkf Exp $ +'\" RCS: @(#) $Id: re_syntax.n,v 1.10 2007/02/13 14:48:55 dkf Exp $ '\" .so man.macros .TH re_syntax n "8.1" Tcl "Tcl Built-In Commands" @@ -215,7 +215,7 @@ A hexadecimal digit. .IP \fBalnum\fR 8 An alphanumeric (letter or digit). .IP \fBprint\fR 8 -An alphanumeric (same as alnum). +A "printable" (same as graph, except also including space). .IP \fBblank\fR 8 A space or tab character. .IP \fBspace\fR 8 @@ -223,7 +223,7 @@ A character producing white space in displayed text. .IP \fBpunct\fR 8 A punctuation character. .IP \fBgraph\fR 8 -A character with a visible representation. +A character with a visible representation (includes both alnum and punct). .IP \fBcntrl\fR 8 A control character. .PP |