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:
parent
f6cbaf43e3
commit
30d56493d5
1 changed files with 1 additions and 1 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue