emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master d41f912: Add missing categories L, R, . and SPC to


From: Mattias Engdegård
Subject: [Emacs-diffs] master d41f912: Add missing categories L, R, . and SPC to rx
Date: Mon, 11 Feb 2019 15:51:43 -0500 (EST)

branch: master
commit d41f9123ecae45654f006d736996343275d774bd
Author: Mattias Engdegård <address@hidden>
Commit: Mattias Engdegård <address@hidden>

    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)
---
 lisp/emacs-lisp/rx.el | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/rx.el b/lisp/emacs-lisp/rx.el
index 3fa0204..d00b868 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]