Mercurial > emacs
changeset 89515:3e38f93b8c80
(get_property_and_range): Make start and end EMACS_INT.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 17 Sep 2003 13:53:56 +0000 |
parents | cd2f8bf8da99 |
children | 42b48c8a8615 |
files | src/intervals.c src/intervals.h |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/intervals.c Wed Sep 17 13:53:03 2003 +0000 +++ b/src/intervals.c Wed Sep 17 13:53:56 2003 +0000 @@ -2269,7 +2269,7 @@ 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;
--- a/src/intervals.h Wed Sep 17 13:53:03 2003 +0000 +++ b/src/intervals.h Wed Sep 17 13:53:56 2003 +0000 @@ -293,7 +293,7 @@ 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));