diff options
| author | Paul Eggert | 2011-04-15 00:48:51 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-15 00:48:51 -0700 |
| commit | 4170f62f39edf1ff1e99aec9bfbfe7bbf10e7fc9 (patch) | |
| tree | e993b231bb5555c9c961f5d0b20d90ac76f77bbd /src/composite.c | |
| parent | 1963a2e0bb07cc8dee6d27f972f93d9cfd7c6b2d (diff) | |
| parent | 49093f601b69d91126aefd328ee8f6bfeb797407 (diff) | |
| download | emacs-4170f62f39edf1ff1e99aec9bfbfe7bbf10e7fc9.tar.gz emacs-4170f62f39edf1ff1e99aec9bfbfe7bbf10e7fc9.zip | |
Merge from mainline.
Diffstat (limited to 'src/composite.c')
| -rw-r--r-- | src/composite.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/composite.c b/src/composite.c index c18f9e8b56e..fab7cb86ba8 100644 --- a/src/composite.c +++ b/src/composite.c | |||
| @@ -152,13 +152,14 @@ int n_compositions; | |||
| 152 | COMPOSITION-ID. */ | 152 | COMPOSITION-ID. */ |
| 153 | Lisp_Object composition_hash_table; | 153 | Lisp_Object composition_hash_table; |
| 154 | 154 | ||
| 155 | Lisp_Object Qauto_composed; | 155 | static Lisp_Object Qauto_composed; |
| 156 | Lisp_Object Qauto_composition_function; | 156 | static Lisp_Object Qauto_composition_function; |
| 157 | /* Maximum number of characters to look back for | 157 | /* Maximum number of characters to look back for |
| 158 | auto-compositions. */ | 158 | auto-compositions. */ |
| 159 | #define MAX_AUTO_COMPOSITION_LOOKBACK 3 | 159 | #define MAX_AUTO_COMPOSITION_LOOKBACK 3 |
| 160 | 160 | ||
| 161 | EXFUN (Fremove_list_of_text_properties, 4); | 161 | static Lisp_Object Fcomposition_get_gstring (Lisp_Object, Lisp_Object, |
| 162 | Lisp_Object, Lisp_Object); | ||
| 162 | 163 | ||
| 163 | /* Temporary variable used in macros COMPOSITION_XXX. */ | 164 | /* Temporary variable used in macros COMPOSITION_XXX. */ |
| 164 | Lisp_Object composition_temp; | 165 | Lisp_Object composition_temp; |