diff options
| author | Dave Love | 2003-09-17 13:53:56 +0000 |
|---|---|---|
| committer | Dave Love | 2003-09-17 13:53:56 +0000 |
| commit | ca5a9b6c7b496bf7f3898ed5a93508f5762a053d (patch) | |
| tree | d0d0560f4056b73787760eb131e3e051129d011a /src | |
| parent | 2b95772c09e0c06fab7c4c7d66aff93408901d9f (diff) | |
| download | emacs-ca5a9b6c7b496bf7f3898ed5a93508f5762a053d.tar.gz emacs-ca5a9b6c7b496bf7f3898ed5a93508f5762a053d.zip | |
(get_property_and_range): Make start and end EMACS_INT.
Diffstat (limited to 'src')
| -rw-r--r-- | src/intervals.c | 2 | ||||
| -rw-r--r-- | 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 | |||
| 2269 | get_property_and_range (pos, prop, val, start, end, object) | 2269 | get_property_and_range (pos, prop, val, start, end, object) |
| 2270 | int pos; | 2270 | int pos; |
| 2271 | Lisp_Object prop, *val; | 2271 | Lisp_Object prop, *val; |
| 2272 | int *start, *end; | 2272 | EMACS_INT *start, *end; |
| 2273 | Lisp_Object object; | 2273 | Lisp_Object object; |
| 2274 | { | 2274 | { |
| 2275 | INTERVAL i, prev, next; | 2275 | 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)); | |||
| 293 | extern Lisp_Object lookup_char_property P_ ((Lisp_Object, Lisp_Object, int)); | 293 | extern Lisp_Object lookup_char_property P_ ((Lisp_Object, Lisp_Object, int)); |
| 294 | extern void move_if_not_intangible P_ ((int)); | 294 | extern void move_if_not_intangible P_ ((int)); |
| 295 | extern int get_property_and_range P_ ((int, Lisp_Object, Lisp_Object *, | 295 | extern int get_property_and_range P_ ((int, Lisp_Object, Lisp_Object *, |
| 296 | int *, int *, Lisp_Object)); | 296 | EMACS_INT *, EMACS_INT *, Lisp_Object)); |
| 297 | extern Lisp_Object get_local_map P_ ((int, struct buffer *, Lisp_Object)); | 297 | extern Lisp_Object get_local_map P_ ((int, struct buffer *, Lisp_Object)); |
| 298 | extern INTERVAL update_interval P_ ((INTERVAL, int)); | 298 | extern INTERVAL update_interval P_ ((INTERVAL, int)); |
| 299 | extern void set_intervals_multibyte P_ ((int)); | 299 | extern void set_intervals_multibyte P_ ((int)); |