aboutsummaryrefslogtreecommitdiffstats
path: root/src/composite.h
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2006-06-06 03:48:41 +0000
committerKenichi Handa <[email protected]>2006-06-06 03:48:41 +0000
commit028b54a0b3ed3681ee922e520084d7fdbff9a9f9 (patch)
treea1ada7ace511c234d1cfbf8e8d0ff4b34b0408dc /src/composite.h
parentc7e14352c6b40009b18875ee1cc988749b28c21f (diff)
(enum composition_method) [USE_FONT_BACKEND]: New
enumeration COMPOSITION_WITH_GLYPH_STRING.
Diffstat (limited to 'src/composite.h')
-rw-r--r--src/composite.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/composite.h b/src/composite.h
index 47a8631041..08463afd89 100644
--- a/src/composite.h
+++ b/src/composite.h
@@ -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
};