aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMattias EngdegÄrd2019-10-20 19:51:08 +0200
committerMattias EngdegÄrd2019-10-20 20:28:12 +0200
commitc2cd27bceb574b749a3de0629d915cb8afb4378e (patch)
treeef62f4022080630d527082bf1f8b6254a12e39ca /doc
parentbdeda7262c2ee5096eb281dc684b752957537fe5 (diff)
downloademacs-c2cd27bceb574b749a3de0629d915cb8afb4378e.tar.gz
emacs-c2cd27bceb574b749a3de0629d915cb8afb4378e.zip
Add missing rx symbols `bow' and `eow' to documentation
* doc/lispref/searching.texi (Rx Constructs): * lisp/emacs-lisp/rx.el (rx): Add missing synonyms.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/searching.texi6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi
index a6c6bf2d4a0..5178575a3bb 100644
--- a/doc/lispref/searching.texi
+++ b/doc/lispref/searching.texi
@@ -1425,13 +1425,15 @@ Corresponding string regexp: @samp{\'}
1425Match at point.@* 1425Match at point.@*
1426Corresponding string regexp: @samp{\=} 1426Corresponding string regexp: @samp{\=}
1427 1427
1428@item @code{word-start} 1428@item @code{word-start}, @code{bow}
1429@cindex @code{word-start} in rx 1429@cindex @code{word-start} in rx
1430@cindex @code{bow} in rx
1430Match at the beginning of a word.@* 1431Match at the beginning of a word.@*
1431Corresponding string regexp: @samp{\<} 1432Corresponding string regexp: @samp{\<}
1432 1433
1433@item @code{word-end} 1434@item @code{word-end}, @code{eow}
1434@cindex @code{word-end} in rx 1435@cindex @code{word-end} in rx
1436@cindex @code{eow} in rx
1435Match at the end of a word.@* 1437Match at the end of a word.@*
1436Corresponding string regexp: @samp{\>} 1438Corresponding string regexp: @samp{\>}
1437 1439