+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
(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)