summaryrefslogtreecommitdiffstats
path: root/doc/library.n
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-05-27 13:21:07 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-05-27 13:21:07 (GMT)
commit4dd5bcda826982415475626e424d423e4f303ad8 (patch)
tree8e593a4b14010b06281f85c58da3a8f32c4debec /doc/library.n
parent41a031557eba50a28d945644117bb7f36b7e9665 (diff)
downloadtcl-4dd5bcda826982415475626e424d423e4f303ad8.zip
tcl-4dd5bcda826982415475626e424d423e4f303ad8.tar.gz
tcl-4dd5bcda826982415475626e424d423e4f303ad8.tar.bz2
Escape the backslash in documentation
Diffstat (limited to 'doc/library.n')
-rw-r--r--doc/library.n4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/library.n b/doc/library.n
index a5f889b..4dcd598 100644
--- a/doc/library.n
+++ b/doc/library.n
@@ -299,13 +299,13 @@ These variables are only used in the \fBtcl_endOfWord\fR,
This variable contains a regular expression that is used by routines
like \fBtcl_endOfWord\fR to identify whether a character is part of a
word or not. If the pattern matches a character, the character is
-considered to be a non-word character. The default is "\W".
+considered to be a non-word character. The default is "\\W".
.TP
\fBtcl_wordchars\fR
This variable contains a regular expression that is used by routines
like \fBtcl_endOfWord\fR to identify whether a character is part of a
word or not. If the pattern matches a character, the character is
-considered to be a word character. The default is "\w".
+considered to be a word character. The default is "\\w".
.SH "SEE ALSO"
env(n), info(n), re_syntax(n)
.SH KEYWORDS