diff options
Diffstat (limited to 'src/fileio.c')
| -rw-r--r-- | src/fileio.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/src/fileio.c b/src/fileio.c index 76d076f75b2..9095cc45878 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4183,12 +4183,12 @@ variable `last-coding-system-used' to the coding system actually used.  */)       in a more optimized way.  */    if (!NILP (replace) && ! replace_handled && BEGV < ZV)      { -      int same_at_start = BEGV_BYTE; -      int same_at_end = ZV_BYTE; -      int same_at_start_charpos; -      int inserted_chars; -      int overlap; -      int bufpos; +      EMACS_INT same_at_start = BEGV_BYTE; +      EMACS_INT same_at_end = ZV_BYTE; +      EMACS_INT same_at_start_charpos; +      EMACS_INT inserted_chars; +      EMACS_INT overlap; +      EMACS_INT bufpos;        unsigned char *decoded;        int temp;        int this_count = SPECPDL_INDEX (); | 
