aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 15ee794d064..51435af0bb2 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1,5 +1,5 @@
1/* Lisp functions pertaining to editing. 1/* Lisp functions pertaining to editing.
2 Copyright (C) 1985,86,87,89,93,94,95,96,97,98, 1999, 2000, 2001, 02, 2003 2 Copyright (C) 1985,86,87,89,93,94,95,96,97,98,1999,2000,01,02,03,2004
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -2772,7 +2772,7 @@ It returns the number of characters changed. */)
2772 modify_region (current_buffer, pos, XINT (end)); 2772 modify_region (current_buffer, pos, XINT (end));
2773 2773
2774 cnt = 0; 2774 cnt = 0;
2775 for (; pos < end; ) 2775 for (; pos < XINT (end); )
2776 { 2776 {
2777 register unsigned char *p = BYTE_POS_ADDR (pos_byte); 2777 register unsigned char *p = BYTE_POS_ADDR (pos_byte);
2778 unsigned char *str; 2778 unsigned char *str;