mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Fix setting of composition-function-table.
This commit is contained in:
parent
eaf582ba78
commit
f07ed73ccc
2 changed files with 3 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue