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)
This commit is contained in:
parent
2860f6cec5
commit
d41f9123ec
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue