Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
204db02a
Commit
204db02a
authored
Apr 12, 2014
by
Eli Zaretskii
Browse files
Set category of Coptic characters be 'g' (Greek).
parent
ac387dd1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
lisp/ChangeLog
lisp/ChangeLog
+1
-0
lisp/international/characters.el
lisp/international/characters.el
+5
-6
No files found.
lisp/ChangeLog
View file @
204db02a
...
...
@@ -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 <sdl.web@gmail.com>
...
...
lisp/international/characters.el
View file @
204db02a
...
...
@@ -798,13 +798,12 @@ with L, LRE, or LRO Unicode bidi character type.")
(
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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment