1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-12 09:28:24 +00:00

(get_property_and_range): Make start and end EMACS_INT.

This commit is contained in:
Dave Love 2003-09-17 13:53:56 +00:00
parent 2b95772c09
commit ca5a9b6c7b
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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));