diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2019-02-11 21:50:56 +0100 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2019-02-11 21:50:56 +0100 |
commit | d41f9123ecae45654f006d736996343275d774bd (patch) | |
tree | e47b04a1c76b484e7bf05e0589216d117a72262f /lisp/emacs-lisp | |
parent | 2860f6cec56b02120b0b62cb3733c00a9e5359db (diff) | |
download | emacs-d41f9123ecae45654f006d736996343275d774bd.tar.gz emacs-d41f9123ecae45654f006d736996343275d774bd.tar.bz2 emacs-d41f9123ecae45654f006d736996343275d774bd.zip |
Add missing categories L, R, . and SPC to rx
* lisp/emacs-lisp/rx.el (rx-categories):
Add missing categories L, R, . and SPC. (Bug#34436)
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/rx.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el index 3fa0204a1a2..d00b86819c9 100644 --- a/lisp/emacs-lisp/rx.el +++ b/lisp/emacs-lisp/rx.el @@ -246,7 +246,9 @@ regular expressions.") (defconst rx-categories - '((consonant . ?0) + '((space-for-indent . ?\s) + (base . ?.) + (consonant . ?0) (base-vowel . ?1) (upper-diacritical-mark . ?2) (lower-diacritical-mark . ?3) @@ -265,7 +267,9 @@ regular expressions.") (japanese-hiragana-two-byte . ?H) (indian-two-byte . ?I) (japanese-katakana-two-byte . ?K) + (strong-left-to-right . ?L) (korean-hangul-two-byte . ?N) + (strong-right-to-left . ?R) (cyrillic-two-byte . ?Y) (combining-diacritic . ?^) (ascii . ?a) |