]> git.eshelyaron.com Git - emacs.git/commitdiff
(get_property_and_range): Make start and end EMACS_INT.
authorDave Love <fx@gnu.org>
Wed, 17 Sep 2003 13:53:56 +0000 (13:53 +0000)
committerDave Love <fx@gnu.org>
Wed, 17 Sep 2003 13:53:56 +0000 (13:53 +0000)
src/intervals.c
src/intervals.h

index 9c6a4ef98d48ce62a47043031b7f9e794cd05e31..e19f09609be637037561c562e9f726cfc0edbdc0 100644 (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;
index 3bd05526ee2d8984d32dca7fea77b6c4fa3fda5a..6affe8216b38c4ab0311cbc1c110d262c926d7b5 100644 (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));