# HG changeset patch # User Kenichi Handa # Date 1149565721 0 # Node ID a7d267afebf94cc745bae97ea54b6a8a78a666ba # Parent 81f1bbab281fdf97417562466555d7f77de9a051 (enum composition_method) [USE_FONT_BACKEND]: New enumeration COMPOSITION_WITH_GLYPH_STRING. diff -r 81f1bbab281f -r a7d267afebf9 src/composite.h --- a/src/composite.h Tue Jun 06 03:48:03 2006 +0000 +++ b/src/composite.h Tue Jun 06 03:48:41 2006 +0000 @@ -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 @@ #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 @@ 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 };