]> git.eshelyaron.com Git - emacs.git/commitdiff
(enum composition_method) [USE_FONT_BACKEND]: New
authorKenichi Handa <handa@m17n.org>
Tue, 6 Jun 2006 03:48:41 +0000 (03:48 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 6 Jun 2006 03:48:41 +0000 (03:48 +0000)
enumeration COMPOSITION_WITH_GLYPH_STRING.

src/composite.h

index 47a86310413f1f2ee30fa6a71b360c8be6253acf..08463afd8996388b98ad3ee8576391f923f32830 100644 (file)
@@ -4,7 +4,7 @@
    Copyright (C) 1997
      National Institute of Advanced Industrial Science and Technology (AIST)
      Registration Number H14PRO021
-   Copyright (C) 2003
+   Copyright (C) 2003, 2006
      National Institute of Advanced Industrial Science and Technology (AIST)
      Registration Number H13PRO009
 
@@ -28,7 +28,7 @@ Boston, MA 02110-1301, USA.  */
 #ifndef EMACS_COMPOSITE_H
 #define EMACS_COMPOSITE_H
 
-/* Methods to display a sequence of components a composition.  */
+/* Methods to display a sequence of components of a composition.  */
 enum composition_method {
   /* Compose relatively without alternate characters.  */
   COMPOSITION_RELATIVE,
@@ -40,6 +40,10 @@ enum composition_method {
   COMPOSITION_WITH_ALTCHARS,
   /* Compose by specified composition rules with alternate characters.  */
   COMPOSITION_WITH_RULE_ALTCHARS,
+#ifdef USE_FONT_BACKEND
+  /* Compose by specified lispy glyph-string.  */
+  COMPOSITION_WITH_GLYPH_STRING,
+#endif  /* USE_FONT_BACKEND */
   /* This is not a method.  */
   COMPOSITION_NO
 };