diff options
| author | Dave Love | 2003-09-17 13:52:42 +0000 |
|---|---|---|
| committer | Dave Love | 2003-09-17 13:52:42 +0000 |
| commit | 72ac5ed65bbdfefeb601952d33a4efc61643117c (patch) | |
| tree | 25291cb86ed1a942aa1987abdd4982622aa79f1b | |
| parent | 575d8075310b8be3c3d302ccbc0361091966c894 (diff) | |
| download | emacs-72ac5ed65bbdfefeb601952d33a4efc61643117c.tar.gz emacs-72ac5ed65bbdfefeb601952d33a4efc61643117c.zip | |
(find_composition, update_compositions): Make
position args EMACS_INT.
| -rw-r--r-- | src/composite.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/composite.h b/src/composite.h index d061b484ea7..287a3e35c80 100644 --- a/src/composite.h +++ b/src/composite.h | |||
| @@ -204,9 +204,9 @@ extern Lisp_Object Vauto_composition_function; | |||
| 204 | extern Lisp_Object Qauto_composition_function; | 204 | extern Lisp_Object Qauto_composition_function; |
| 205 | 205 | ||
| 206 | extern int get_composition_id P_ ((int, int, int, Lisp_Object, Lisp_Object)); | 206 | extern int get_composition_id P_ ((int, int, int, Lisp_Object, Lisp_Object)); |
| 207 | extern int find_composition P_ ((int, int, int *, int *, Lisp_Object *, | 207 | extern int find_composition P_ ((int, int, EMACS_INT *, EMACS_INT *, Lisp_Object *, |
| 208 | Lisp_Object)); | 208 | Lisp_Object)); |
| 209 | extern void update_compositions P_ ((int, int, int)); | 209 | extern void update_compositions P_ ((EMACS_INT, EMACS_INT, int)); |
| 210 | extern void make_composition_value_copy P_ ((Lisp_Object)); | 210 | extern void make_composition_value_copy P_ ((Lisp_Object)); |
| 211 | extern void compose_region P_ ((int, int, Lisp_Object, Lisp_Object, | 211 | extern void compose_region P_ ((int, int, Lisp_Object, Lisp_Object, |
| 212 | Lisp_Object)); | 212 | Lisp_Object)); |