emacs-diffs
[Top][All Lists]
Advanced

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

master 51c29b7: Simplify quick-check composition regexps


From: Mattias Engdegård
Subject: master 51c29b7: Simplify quick-check composition regexps
Date: Fri, 13 Nov 2020 12:03:47 -0500 (EST)

branch: master
commit 51c29b7b0d9db89555bd65173feed0f25a1cccef
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>

    Simplify quick-check composition regexps
    
    * lisp/international/ucs-normalize.el
    (quick-check-composition-list-to-regexp): Don't add an explicit
    pattern for U+1161..U+1175 and U+11a8..U+11c2 since these are already
    part of `combining-chars'.
---
 lisp/international/ucs-normalize.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/international/ucs-normalize.el 
b/lisp/international/ucs-normalize.el
index 33d0f0d..7822450 100644
--- a/lisp/international/ucs-normalize.el
+++ b/lisp/international/ucs-normalize.el
@@ -441,7 +441,7 @@ decomposition."
     (concat (quick-check-list-to-regexp quick-check-list) "\\|[가-힣]"))
 
   (defun quick-check-composition-list-to-regexp (quick-check-list)
-    (concat (quick-check-list-to-regexp quick-check-list) "\\|[ᅡ-ᅵᆨ-ᇂ]"))
+    (quick-check-list-to-regexp quick-check-list))
 )
 
 



reply via email to

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