diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/composite.h | 8 |
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. */ |
| 32 | enum composition_method { | 32 | enum 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 | }; |