aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/searching.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi
index a4b65334126..2274bab002c 100644
--- a/doc/lispref/searching.texi
+++ b/doc/lispref/searching.texi
@@ -1220,7 +1220,8 @@ Corresponding string regexp: @samp{[^@dots{}]}, @samp{\S@var{code}},
1220Match any character except a newline.@* 1220Match any character except a newline.@*
1221Corresponding string regexp: @samp{.} (dot) 1221Corresponding string regexp: @samp{.} (dot)
1222 1222
1223@item @code{anything} 1223@item @code{anychar}, @code{anything}
1224@cindex @code{anychar} in rx
1224@cindex @code{anything} in rx 1225@cindex @code{anything} in rx
1225Match any character.@* 1226Match any character.@*
1226Corresponding string regexp: @samp{.\|\n} (for example) 1227Corresponding string regexp: @samp{.\|\n} (for example)