diff options
Diffstat (limited to 'src/marker.c')
| -rw-r--r-- | src/marker.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/marker.c b/src/marker.c index 34d8bc4e65b..3f8b78e81a8 100644 --- a/src/marker.c +++ b/src/marker.c | |||
| @@ -247,11 +247,11 @@ buf_charpos_to_bytepos (struct buffer *b, EMACS_INT charpos) | |||
| 247 | /* Used for debugging: recompute the bytepos corresponding to CHARPOS | 247 | /* Used for debugging: recompute the bytepos corresponding to CHARPOS |
| 248 | in the simplest, most reliable way. */ | 248 | in the simplest, most reliable way. */ |
| 249 | 249 | ||
| 250 | int | 250 | EMACS_INT |
| 251 | verify_bytepos (int charpos) | 251 | verify_bytepos (EMACS_INT charpos) |
| 252 | { | 252 | { |
| 253 | int below = 1; | 253 | EMACS_INT below = 1; |
| 254 | int below_byte = 1; | 254 | EMACS_INT below_byte = 1; |
| 255 | 255 | ||
| 256 | while (below != charpos) | 256 | while (below != charpos) |
| 257 | { | 257 | { |