summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2019-02-14 16:09:55 +0100
committerMattias EngdegÄrd <mattiase@acm.org>2019-02-14 16:09:55 +0100
commita4c7de35decaace94eba678161b0d4c8266647d2 (patch)
treee11f393bdbd180918019cf378e93a711c9861b5d /lisp/emacs-lisp
parente2050920819aab658171e8c6af4a9e0ad322fcfa (diff)
downloademacs-a4c7de35decaace94eba678161b0d4c8266647d2.tar.gz
emacs-a4c7de35decaace94eba678161b0d4c8266647d2.tar.bz2
emacs-a4c7de35decaace94eba678161b0d4c8266647d2.zip
Add categories L, R, SPC and . to `rx' doc string
* lisp/emacs-lisp/rx.el (rx): Add new categories to doc string.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/rx.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el
index c0a5d52788b..b2299030a1b 100644
--- a/lisp/emacs-lisp/rx.el
+++ b/lisp/emacs-lisp/rx.el
@@ -1056,7 +1056,9 @@ CHAR
matches a character with category CATEGORY. CATEGORY must be
either a character to use for C, or one of the following symbols.
- `consonant' (\\c0 in string notation)
+ `space-for-indent' (\\c\\s in string notation)
+ `base' (\\c.)
+ `consonant' (\\c0)
`base-vowel' (\\c1)
`upper-diacritical-mark' (\\c2)
`lower-diacritical-mark' (\\c3)
@@ -1074,7 +1076,9 @@ CHAR
`japanese-hiragana-two-byte' (\\cH)
`indian-two-byte' (\\cI)
`japanese-katakana-two-byte' (\\cK)
+ `strong-left-to-right' (\\cL)
`korean-hangul-two-byte' (\\cN)
+ `strong-right-to-left' (\\cR)
`cyrillic-two-byte' (\\cY)
`combining-diacritic' (\\c^)
`ascii' (\\ca)