From ca5a9b6c7b496bf7f3898ed5a93508f5762a053d Mon Sep 17 00:00:00 2001 From: Dave Love Date: Wed, 17 Sep 2003 13:53:56 +0000 Subject: [PATCH] (get_property_and_range): Make start and end EMACS_INT. --- src/intervals.c | 2 +- src/intervals.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/intervals.c b/src/intervals.c index 9c6a4ef98d4..e19f09609be 100644 --- a/src/intervals.c +++ b/src/intervals.c @@ -2269,7 +2269,7 @@ int get_property_and_range (pos, prop, val, start, end, object) int pos; Lisp_Object prop, *val; - int *start, *end; + EMACS_INT *start, *end; Lisp_Object object; { INTERVAL i, prev, next; diff --git a/src/intervals.h b/src/intervals.h index 3bd05526ee2..6affe8216b3 100644 --- a/src/intervals.h +++ b/src/intervals.h @@ -293,7 +293,7 @@ extern Lisp_Object textget P_ ((Lisp_Object, Lisp_Object)); extern Lisp_Object lookup_char_property P_ ((Lisp_Object, Lisp_Object, int)); extern void move_if_not_intangible P_ ((int)); extern int get_property_and_range P_ ((int, Lisp_Object, Lisp_Object *, - int *, int *, Lisp_Object)); + EMACS_INT *, EMACS_INT *, Lisp_Object)); extern Lisp_Object get_local_map P_ ((int, struct buffer *, Lisp_Object)); extern INTERVAL update_interval P_ ((INTERVAL, int)); extern void set_intervals_multibyte P_ ((int)); -- 2.39.2