]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix setting of composition-function-table.
authorKenichi Handa <handa@m17n.org>
Fri, 5 Sep 2008 01:01:02 +0000 (01:01 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 5 Sep 2008 01:01:02 +0000 (01:01 +0000)
lisp/ChangeLog
lisp/language/tibetan.el

index fd7e5bc9bc6666a4229d00ae197fdab94d94928d..831b191832dff02e414c24bb4810d0ac92c96000 100644 (file)
@@ -1,3 +1,13 @@
+2008-09-05  Kenichi Handa  <handa@m17n.org>
+
+       * language/tibetan.el: Fix setting of composition-function-table.
+
+       * composite.el (find-composition): Mention about the automatic
+       composition in the docstring.
+
+       * descr-text.el (describe-char): Fix handling of automatic
+       composition.
+
 2008-09-04  Juanma Barranquero  <lekktu@gmail.com>
 
        * net/tramp-cache.el (tramp-flush-file-function): Fix typo in docstring.
index b22bfd6711e10246d813200bf2e263565a705129..cf4f98296d587f762862e5780b16bc22fa040668 100644 (file)
@@ -604,8 +604,9 @@ This also matches some punctuation characters which need conversion.")
 (defvar tibetan-decomposed-temp nil)
 
 ;; For automatic composition.
-(set-char-table-range composition-function-table '(#xF00 . #xFD1)
-                     '(("[\xF00-\xFD1]+" . tibetan-composition-function)))
+(set-char-table-range 
+ composition-function-table '(#xF00 . #xFD1)
+ (list (vector tibetan-composable-pattern 0 'font-shape-gstring)))
 
 (provide 'tibetan)