summaryrefslogtreecommitdiff
path: root/lisp/international
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2014-04-12 11:41:39 +0300
committerEli Zaretskii <eliz@gnu.org>2014-04-12 11:41:39 +0300
commitac387dd13eaa4249a54dd1c3a72f3efed2ee7ce9 (patch)
tree7847726f4fdea83649e2ebbb09ce105cbf6ad021 /lisp/international
parent2e611da66e0192a8a63437dbc8f116314cadb71d (diff)
downloademacs-ac387dd13eaa4249a54dd1c3a72f3efed2ee7ce9.tar.gz
Fix bug #17243 with case table entries for Coptic letters
lisp/international/characters.el <standard-case-table>: Add entries for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243)
Diffstat (limited to 'lisp/international')
-rw-r--r--lisp/international/characters.el15
1 files changed, 15 insertions, 0 deletions
diff --git a/lisp/international/characters.el b/lisp/international/characters.el
index 54ab362df04..e76fef9fd3e 100644
--- a/lisp/international/characters.el
+++ b/lisp/international/characters.el
@@ -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)