From 13818c30785d1253412c4e08c61417eb81a98c5b Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 12 Feb 2008 21:35:15 +0000 Subject: * coding.c (coding_set_destination): Use BEG_BYTE rather than hardcoding 1. (detect_coding_system): * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text) (string_char_to_byte, string_byte_to_char, insert_from_gap): * insdel.c (insert_from_gap): * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos) (string_char_to_byte, string_byte_to_char, string_make_multibyte) (string_to_multibyte): * character.c (chars_in_text, multibyte_chars_in_text): * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions. --- src/character.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/character.c') diff --git a/src/character.c b/src/character.c index 98256c9f9e2..9fa4dffc11f 100644 --- a/src/character.c +++ b/src/character.c @@ -568,10 +568,10 @@ The returned value is 0 for left-to-right and 1 for right-to-left. */) However, if the current buffer has enable-multibyte-characters = nil, we treat each byte as a character. */ -int +EMACS_INT chars_in_text (ptr, nbytes) const unsigned char *ptr; - int nbytes; + EMACS_INT nbytes; { /* current_buffer is null at early stages of Emacs initialization. */ if (current_buffer == 0 @@ -586,10 +586,10 @@ chars_in_text (ptr, nbytes) sequences while assuming that there's no invalid sequence. It ignores enable-multibyte-characters. */ -int +EMACS_INT multibyte_chars_in_text (ptr, nbytes) const unsigned char *ptr; - int nbytes; + EMACS_INT nbytes; { const unsigned char *endp = ptr + nbytes; int chars = 0; -- cgit v1.2.1