Fix composition of characters from Syriac and Arabis scripts.
lisp/language/misc-lang.el (composition-function-table): Add Syriac characters and also ZWJ/ZWNJ. See http://lists.gnu.org/archive/html/help-gnu-emacs/2014-12/msg00248.html for the details.
This commit is contained in:
parent
7e9dfded93
commit
c6400e17e7
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2014-12-27 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* language/misc-lang.el (composition-function-table): Add Syriac
|
||||
characters and also ZWJ/ZWNJ. See
|
||||
http://lists.gnu.org/archive/html/help-gnu-emacs/2014-12/msg00248.html
|
||||
for the details.
|
||||
|
||||
2014-12-27 Fabián Ezequiel Gallina <fgallina@gnu.org>
|
||||
|
||||
python.el: Fix message when sending region.
|
||||
|
|
|
@ -78,7 +78,8 @@ and Italian.")))
|
|||
(set-char-table-range
|
||||
composition-function-table
|
||||
'(#x600 . #x6FF)
|
||||
(list ["[\u0600-\u06FF]+" 0 font-shape-gstring]))
|
||||
(list ["\u200D?[\u0600-\u074F]+[\u200D\u200C]*[\u0600-\u074F]+\u200D?"
|
||||
0 font-shape-gstring]))
|
||||
|
||||
(provide 'misc-lang)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue