diff options
| author | Mattias EngdegÄrd | 2019-02-11 21:50:56 +0100 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2019-02-11 21:50:56 +0100 |
| commit | d41f9123ecae45654f006d736996343275d774bd (patch) | |
| tree | e47b04a1c76b484e7bf05e0589216d117a72262f | |
| parent | 2860f6cec56b02120b0b62cb3733c00a9e5359db (diff) | |
| download | emacs-d41f9123ecae45654f006d736996343275d774bd.tar.gz 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)
| -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.") | |||
| 246 | 246 | ||
| 247 | 247 | ||
| 248 | (defconst rx-categories | 248 | (defconst rx-categories |
| 249 | '((consonant . ?0) | 249 | '((space-for-indent . ?\s) |
| 250 | (base . ?.) | ||
| 251 | (consonant . ?0) | ||
| 250 | (base-vowel . ?1) | 252 | (base-vowel . ?1) |
| 251 | (upper-diacritical-mark . ?2) | 253 | (upper-diacritical-mark . ?2) |
| 252 | (lower-diacritical-mark . ?3) | 254 | (lower-diacritical-mark . ?3) |
| @@ -265,7 +267,9 @@ regular expressions.") | |||
| 265 | (japanese-hiragana-two-byte . ?H) | 267 | (japanese-hiragana-two-byte . ?H) |
| 266 | (indian-two-byte . ?I) | 268 | (indian-two-byte . ?I) |
| 267 | (japanese-katakana-two-byte . ?K) | 269 | (japanese-katakana-two-byte . ?K) |
| 270 | (strong-left-to-right . ?L) | ||
| 268 | (korean-hangul-two-byte . ?N) | 271 | (korean-hangul-two-byte . ?N) |
| 272 | (strong-right-to-left . ?R) | ||
| 269 | (cyrillic-two-byte . ?Y) | 273 | (cyrillic-two-byte . ?Y) |
| 270 | (combining-diacritic . ?^) | 274 | (combining-diacritic . ?^) |
| 271 | (ascii . ?a) | 275 | (ascii . ?a) |