From ac387dd13eaa4249a54dd1c3a72f3efed2ee7ce9 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 12 Apr 2014 11:41:39 +0300 Subject: [PATCH] Fix bug #17243 with case table entries for Coptic letters lisp/international/characters.el : Add entries for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243) --- lisp/ChangeLog | 5 +++++ lisp/international/characters.el | 15 +++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6ccf81c9c35..94a3f61c1c4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2014-04-12 Eli Zaretskii + + * international/characters.el : Add entries + for letters from the Coptic block u+2C80-u+2CFF. (Bug#17243) + 2014-04-12 Leo Liu * progmodes/octave.el (completion-table-with-cache): Define if not 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) -- 2.39.2