summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/rx.el
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2019-10-20 19:51:08 +0200
committerMattias EngdegÄrd <mattiase@acm.org>2019-10-20 20:28:12 +0200
commitc2cd27bceb574b749a3de0629d915cb8afb4378e (patch)
treeef62f4022080630d527082bf1f8b6254a12e39ca /lisp/emacs-lisp/rx.el
parentbdeda7262c2ee5096eb281dc684b752957537fe5 (diff)
downloademacs-c2cd27bceb574b749a3de0629d915cb8afb4378e.tar.gz
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 'lisp/emacs-lisp/rx.el')
-rw-r--r--lisp/emacs-lisp/rx.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el
index 57d633f8f0b..006a393921a 100644
--- a/lisp/emacs-lisp/rx.el
+++ b/lisp/emacs-lisp/rx.el
@@ -1064,8 +1064,8 @@ Zero-width assertions: these all match the empty string in specific places.
string-end At the end of the string or buffer.
Alias: buffer-end, eos, eot.
point At point.
- word-start At the beginning of a word.
- word-end At the end of a word.
+ word-start At the beginning of a word. Alias: bow.
+ word-end At the end of a word. Alias: eow.
word-boundary At the beginning or end of a word.
not-word-boundary Not at the beginning or end of a word.
symbol-start At the beginning of a symbol.