]> git.eshelyaron.com Git - emacs.git/commitdiff
Add missing rx symbols `bow' and `eow' to documentation
authorMattias Engdegård <mattiase@acm.org>
Sun, 20 Oct 2019 17:51:08 +0000 (19:51 +0200)
committerMattias Engdegård <mattiase@acm.org>
Sun, 20 Oct 2019 18:28:12 +0000 (20:28 +0200)
* doc/lispref/searching.texi (Rx Constructs):
* lisp/emacs-lisp/rx.el (rx):  Add missing synonyms.

doc/lispref/searching.texi
lisp/emacs-lisp/rx.el

index a6c6bf2d4a0866f46358ad8343305890feda92ca..5178575a3bb6155727e204f7dac16080da39e0b2 100644 (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{\>}
 
index 57d633f8f0bcbc67aa766639217648507b0be553..006a393921aa2a178dc8345a9f253ac60d12987f 100644 (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.