mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-15 09:47:20 +00:00
(Finsert_file_contents): Adjust offsets when replacing
within a narrowed buffer.
This commit is contained in:
parent
ffdbbc0107
commit
7f5d2c7241
@ -1,3 +1,8 @@
|
||||
2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* fileio.c (Finsert_file_contents): Adjust offsets when replacing
|
||||
within a narrowed buffer.
|
||||
|
||||
2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
|
||||
|
||||
* coding.c (decode_coding_object, encode_coding_object):
|
||||
|
@ -4338,10 +4338,12 @@ variable `last-coding-system-used' to the coding system actually used. */)
|
||||
SET_PT_BOTH (temp, same_at_start);
|
||||
same_at_start_charpos
|
||||
= buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
|
||||
same_at_start);
|
||||
same_at_start - BEGV_BYTE
|
||||
+ BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
|
||||
inserted_chars
|
||||
= (buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
|
||||
same_at_start + inserted)
|
||||
same_at_start + inserted - BEGV_BYTE
|
||||
+ BUF_BEG_BYTE (XBUFFER (conversion_buffer)))
|
||||
- same_at_start_charpos);
|
||||
/* This binding is to avoid ask-user-about-supersession-threat
|
||||
being called in insert_from_buffer (via in
|
||||
|
Loading…
Reference in New Issue
Block a user