mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-29 07:58:28 +00:00
Fix setting of composition-function-table.
This commit is contained in:
parent
eaf582ba78
commit
f07ed73ccc
@ -29,7 +29,7 @@
|
||||
|
||||
(set-char-table-range composition-function-table
|
||||
'(#xAA00 . #xAA5F)
|
||||
'(("[\xAA00-\xAA5F]+" . font-shape-text)))
|
||||
(list (vector "[\xAA00-\xAA5F]+" 0 'font-shape-gstring)))
|
||||
|
||||
(set-language-info-alist
|
||||
"Cham" '((charset unicode)
|
||||
|
@ -30,7 +30,8 @@
|
||||
(sample-text . "Khmer (ភាសាខ្មែរ) ជំរាបសួរ")
|
||||
(documentation . t)))
|
||||
|
||||
(let ((val '(("[\x1780-\x17FF\x19E0-\x19FF\x200C\x200D]+" . font-shape-text))))
|
||||
(let ((val (list (vector "[\x1780-\x17FF\x19E0-\x19FF\x200C\x200D]+"
|
||||
0 'font-shape-gstring))))
|
||||
(set-char-table-range composition-function-table '(#x1780 . #x17FF) val)
|
||||
(set-char-table-range composition-function-table '(#x19E0 . #x19FF) val))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user