emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-24 r116946: Set category of Coptic characters be 'g'


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs-24 r116946: Set category of Coptic characters be 'g' (Greek).
Date: Sat, 12 Apr 2014 08:49:16 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116946
revision-id: address@hidden
parent: address@hidden
committer: Eli Zaretskii <address@hidden>
branch nick: emacs-24
timestamp: Sat 2014-04-12 11:49:05 +0300
message:
  Set category of Coptic characters be 'g' (Greek).
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/international/characters.el 
characters.el-20091113204419-o5vbwnq5f7feedwu-1037
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-04-12 08:41:39 +0000
+++ b/lisp/ChangeLog    2014-04-12 08:49:05 +0000
@@ -2,6 +2,7 @@
 
        * international/characters.el <standard-case-table>: Add entries
        for letters from the Coptic block u+2C80-u+2CFF.  (Bug#17243)
+       Set category of Coptic characters be 'g' (Greek).
 
 2014-04-12  Leo Liu  <address@hidden>
 

=== modified file 'lisp/international/characters.el'
--- a/lisp/international/characters.el  2014-04-12 08:41:39 +0000
+++ b/lisp/international/characters.el  2014-04-12 08:49:05 +0000
@@ -798,13 +798,12 @@
       (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))))))
+  ;; 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 '(#x2C80 . #x2CFF) ?g)
 
   ;; Fullwidth Latin
   (setq c #xff21)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]