aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2006-06-06 03:48:41 +0000
committerKenichi Handa2006-06-06 03:48:41 +0000
commit028b54a0b3ed3681ee922e520084d7fdbff9a9f9 (patch)
treea1ada7ace511c234d1cfbf8e8d0ff4b34b0408dc /src
parentc7e14352c6b40009b18875ee1cc988749b28c21f (diff)
downloademacs-028b54a0b3ed3681ee922e520084d7fdbff9a9f9.tar.gz
emacs-028b54a0b3ed3681ee922e520084d7fdbff9a9f9.zip
(enum composition_method) [USE_FONT_BACKEND]: New
enumeration COMPOSITION_WITH_GLYPH_STRING.
Diffstat (limited to 'src')
-rw-r--r--src/composite.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/composite.h b/src/composite.h
index 47a86310413..08463afd899 100644
--- a/src/composite.h
+++ b/src/composite.h
@@ -4,7 +4,7 @@
4 Copyright (C) 1997 4 Copyright (C) 1997
5 National Institute of Advanced Industrial Science and Technology (AIST) 5 National Institute of Advanced Industrial Science and Technology (AIST)
6 Registration Number H14PRO021 6 Registration Number H14PRO021
7 Copyright (C) 2003 7 Copyright (C) 2003, 2006
8 National Institute of Advanced Industrial Science and Technology (AIST) 8 National Institute of Advanced Industrial Science and Technology (AIST)
9 Registration Number H13PRO009 9 Registration Number H13PRO009
10 10
@@ -28,7 +28,7 @@ Boston, MA 02110-1301, USA. */
28#ifndef EMACS_COMPOSITE_H 28#ifndef EMACS_COMPOSITE_H
29#define EMACS_COMPOSITE_H 29#define EMACS_COMPOSITE_H
30 30
31/* Methods to display a sequence of components a composition. */ 31/* Methods to display a sequence of components of a composition. */
32enum composition_method { 32enum composition_method {
33 /* Compose relatively without alternate characters. */ 33 /* Compose relatively without alternate characters. */
34 COMPOSITION_RELATIVE, 34 COMPOSITION_RELATIVE,
@@ -40,6 +40,10 @@ enum composition_method {
40 COMPOSITION_WITH_ALTCHARS, 40 COMPOSITION_WITH_ALTCHARS,
41 /* Compose by specified composition rules with alternate characters. */ 41 /* Compose by specified composition rules with alternate characters. */
42 COMPOSITION_WITH_RULE_ALTCHARS, 42 COMPOSITION_WITH_RULE_ALTCHARS,
43#ifdef USE_FONT_BACKEND
44 /* Compose by specified lispy glyph-string. */
45 COMPOSITION_WITH_GLYPH_STRING,
46#endif /* USE_FONT_BACKEND */
43 /* This is not a method. */ 47 /* This is not a method. */
44 COMPOSITION_NO 48 COMPOSITION_NO
45}; 49};