Mercurial > emacs
comparison src/indent.c @ 89510:7e2d74e52afc
(check_composition): Make start and end EMACS_INT.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 17 Sep 2003 13:51:20 +0000 |
parents | 2f877ed80fa6 |
children | 68c22ea6027c |
comparison
equal
deleted
inserted
replaced
89509:3c9d2f9bf6bb | 89510:7e2d74e52afc |
---|---|
285 check_composition (pos, pos_byte, point, len, len_byte, width) | 285 check_composition (pos, pos_byte, point, len, len_byte, width) |
286 int pos, pos_byte, point; | 286 int pos, pos_byte, point; |
287 int *len, *len_byte, *width; | 287 int *len, *len_byte, *width; |
288 { | 288 { |
289 Lisp_Object prop; | 289 Lisp_Object prop; |
290 int start, end; | 290 EMACS_INT start, end; |
291 int id; | 291 int id; |
292 | 292 |
293 if (! find_composition (pos, -1, &start, &end, &prop, Qnil) | 293 if (! find_composition (pos, -1, &start, &end, &prop, Qnil) |
294 || pos != start || point < end | 294 || pos != start || point < end |
295 || !COMPOSITION_VALID_P (start, end, prop)) | 295 || !COMPOSITION_VALID_P (start, end, prop)) |