1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-16 09:50:25 +00:00

Add missing rx symbols bow' and eow' to documentation

* doc/lispref/searching.texi (Rx Constructs):
* lisp/emacs-lisp/rx.el (rx):  Add missing synonyms.
This commit is contained in:
Mattias Engdegård 2019-10-20 19:51:08 +02:00
parent bdeda7262c
commit c2cd27bceb
2 changed files with 6 additions and 4 deletions

View File

@ -1425,13 +1425,15 @@ Corresponding string regexp: @samp{\'}
Match at point.@*
Corresponding string regexp: @samp{\=}
@item @code{word-start}
@item @code{word-start}, @code{bow}
@cindex @code{word-start} in rx
@cindex @code{bow} in rx
Match at the beginning of a word.@*
Corresponding string regexp: @samp{\<}
@item @code{word-end}
@item @code{word-end}, @code{eow}
@cindex @code{word-end} in rx
@cindex @code{eow} in rx
Match at the end of a word.@*
Corresponding string regexp: @samp{\>}

View File

@ -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.