]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug #17243 with case table entries for Coptic letters
authorEli Zaretskii <eliz@gnu.org>
Sat, 12 Apr 2014 08:41:39 +0000 (11:41 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 12 Apr 2014 08:41:39 +0000 (11:41 +0300)
 lisp/international/characters.el <standard-case-table>: Add entries
 for letters from the Coptic block u+2C80-u+2CFF.  (Bug#17243)

lisp/ChangeLog
lisp/international/characters.el

index 6ccf81c9c3551a61f9e4b6f0908aa37897d1ea87..94a3f61c1c4de1cc2ac14ca28ee3bf27b8b28bf8 100644 (file)
@@ -1,3 +1,8 @@
+2014-04-12  Eli Zaretskii  <eliz@gnu.org>
+
+       * international/characters.el <standard-case-table>: Add entries
+       for letters from the Coptic block u+2C80-u+2CFF.  (Bug#17243)
+
 2014-04-12  Leo Liu  <sdl.web@gmail.com>
 
        * progmodes/octave.el (completion-table-with-cache): Define if not
index 54ab362df0442fb67a4363e19a27c9df3dc9de1a..e76fef9fd3e2d93fe8722bf8578c5404db3bc64a 100644 (file)
@@ -791,6 +791,21 @@ with L, LRE, or LRO Unicode bidi character type.")
     (modify-category-entry (+ c 26) ?l)
     (setq c (1+ c)))
 
+  ;; Coptic
+  (let ((pair-ranges '((#x2C80 . #x2CE2)
+                      (#x2CEB . #x2CF2))))
+    (dolist (elt pair-ranges)
+      (let ((from (car elt)) (to (cdr elt)))
+       (while (< from to)
+         (set-case-syntax-pair from (1+ from) tbl)
+         ;; There's no Coptic category.  However, Coptic letters that
+         ;; are part of the Greek block above get the Greek category,
+         ;; and those in this block are derived from Greek letters,
+         ;; so let's be consistent about their category.
+         (modify-category-entry from ?g)
+         (modify-category-entry (1+ from) ?g)
+         (setq from (+ from 2))))))
+
   ;; Fullwidth Latin
   (setq c #xff21)
   (while (<= c #xff3a)