diff options
author | Kenichi Handa <handa@m17n.org> | 2008-12-30 23:34:54 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2008-12-30 23:34:54 +0000 |
commit | ee946858594753b55dab38e303cc650a56bb063d (patch) | |
tree | 5a71b2be4a658c92521242a51c3c3f565e1c51ec /lisp/language/japanese.el | |
parent | b23dc4242c9c5f37fb0790bdf83bbc008b8e675d (diff) | |
download | emacs-ee946858594753b55dab38e303cc650a56bb063d.tar.gz emacs-ee946858594753b55dab38e303cc650a56bb063d.tar.bz2 emacs-ee946858594753b55dab38e303cc650a56bb063d.zip |
(compose-gstring-for-variation-glyph): New
function. Register it in composition-function-table.
Diffstat (limited to 'lisp/language/japanese.el')
-rw-r--r-- | lisp/language/japanese.el | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lisp/language/japanese.el b/lisp/language/japanese.el index 73c3508a9d1..6789e7cdb60 100644 --- a/lisp/language/japanese.el +++ b/lisp/language/japanese.el @@ -250,6 +250,29 @@ eucJP-ms is defined in <http://www.opengroup.or.jp/jvc/cde/appendix.html>." (define-translation-table 'unicode-to-jisx0213 (char-table-extra-slot table 0))) +(defun compose-gstring-for-variation-glyph (gstring) + "Compose glyph-string GSTRING for graphic display. +GSTRING must have two glyphs; the first is a glyph for a han character, +and the second is a glyph for a variation selector." + (let* ((font (lgstring-font gstring)) + (han (lgstring-char gstring 0)) + (vs (lgstring-char gstring 1)) + (glyphs (font-variation-glyphs font han)) + (g0 (lgstring-glyph gstring 0)) + (g1 (lgstring-glyph gstring 1))) + (catch 'tag + (dolist (elt glyphs) + (if (= (car elt) vs) + (progn + (lglyph-set-code g0 (cdr elt)) + (lglyph-set-from-to g0 (lglyph-from g0) (lglyph-to g1)) + (lgstring-set-glyph gstring 1 nil) + (throw 'tag gstring))))))) + +(let ((elt '([".." 1 compose-gstring-for-variation-glyph]))) + (set-char-table-range composition-function-table '(#xFE00 . #xFE0F) elt) + (set-char-table-range composition-function-table '(#xE0100 . #xE01EF) elt)) + (provide 'japanese) ;; arch-tag: 450f5537-9d53-4d5e-b731-4cf116d8cbc9 |