1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 04:30:45 -08:00

(Ftranslate_region_internal): Fix Lisp_Object/int mixup.

This commit is contained in:
Kenichi Handa 2004-03-11 11:38:27 +00:00
parent f6cbaf43e3
commit 30d56493d5

View file

@ -2795,7 +2795,7 @@ It returns the number of characters changed. */)
modify_region (current_buffer, XINT (start), XINT (end));
cnt = 0;
for (; pos < end; )
for (; pos < XINT (end); )
{
register unsigned char *p = BYTE_POS_ADDR (pos_byte);
unsigned char *str, buf[MAX_MULTIBYTE_LENGTH];