mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-17 10:06:13 +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:
parent
bdeda7262c
commit
c2cd27bceb
@ -1425,13 +1425,15 @@ Corresponding string regexp: @samp{\'}
|
|||||||
Match at point.@*
|
Match at point.@*
|
||||||
Corresponding string regexp: @samp{\=}
|
Corresponding string regexp: @samp{\=}
|
||||||
|
|
||||||
@item @code{word-start}
|
@item @code{word-start}, @code{bow}
|
||||||
@cindex @code{word-start} in rx
|
@cindex @code{word-start} in rx
|
||||||
|
@cindex @code{bow} in rx
|
||||||
Match at the beginning of a word.@*
|
Match at the beginning of a word.@*
|
||||||
Corresponding string regexp: @samp{\<}
|
Corresponding string regexp: @samp{\<}
|
||||||
|
|
||||||
@item @code{word-end}
|
@item @code{word-end}, @code{eow}
|
||||||
@cindex @code{word-end} in rx
|
@cindex @code{word-end} in rx
|
||||||
|
@cindex @code{eow} in rx
|
||||||
Match at the end of a word.@*
|
Match at the end of a word.@*
|
||||||
Corresponding string regexp: @samp{\>}
|
Corresponding string regexp: @samp{\>}
|
||||||
|
|
||||||
|
@ -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.
|
string-end At the end of the string or buffer.
|
||||||
Alias: buffer-end, eos, eot.
|
Alias: buffer-end, eos, eot.
|
||||||
point At point.
|
point At point.
|
||||||
word-start At the beginning of a word.
|
word-start At the beginning of a word. Alias: bow.
|
||||||
word-end At the end of a word.
|
word-end At the end of a word. Alias: eow.
|
||||||
word-boundary At the beginning or end of a word.
|
word-boundary At the beginning or end of a word.
|
||||||
not-word-boundary Not 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.
|
symbol-start At the beginning of a symbol.
|
||||||
|
Loading…
Reference in New Issue
Block a user