]> git.eshelyaron.com Git - emacs.git/commitdiff
Simplify quick-check composition regexps
authorMattias Engdegård <mattiase@acm.org>
Fri, 13 Nov 2020 16:42:27 +0000 (17:42 +0100)
committerMattias Engdegård <mattiase@acm.org>
Fri, 13 Nov 2020 17:03:06 +0000 (18:03 +0100)
* 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

index 33d0f0dda298188f2483f69bb1ed62bab682c400..7822450e49b1875891680d138e39900481986a98 100644 (file)
@@ -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))
 )