diff options
| author | Kenichi Handa | 1998-01-22 02:15:35 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1998-01-22 02:15:35 +0000 |
| commit | 76b233658bb80688a4c1f8d208fc2a4a065ecab6 (patch) | |
| tree | 983ba04767f7bf22009c71ad098b5f21ee12be72 /src | |
| parent | 7e2404fd96576255f28d7ae919b33516dcf37d68 (diff) | |
| download | emacs-76b233658bb80688a4c1f8d208fc2a4a065ecab6.tar.gz emacs-76b233658bb80688a4c1f8d208fc2a4a065ecab6.zip | |
(Finsert_file_contents): Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index 5bde062e0ab..49d7de52bbe 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -3780,10 +3780,10 @@ This does code conversion according to the value of\n\ | |||
| 3780 | current_buffer->buffer_file_type = Qt; | 3780 | current_buffer->buffer_file_type = Qt; |
| 3781 | #endif | 3781 | #endif |
| 3782 | 3782 | ||
| 3783 | record_insert (PT, inserted_chars); | 3783 | record_insert (PT, inserted); |
| 3784 | 3784 | ||
| 3785 | /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ | 3785 | /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ |
| 3786 | offset_intervals (current_buffer, PT, inserted_chars); | 3786 | offset_intervals (current_buffer, PT, inserted); |
| 3787 | MODIFF++; | 3787 | MODIFF++; |
| 3788 | 3788 | ||
| 3789 | if (! NILP (coding.post_read_conversion)) | 3789 | if (! NILP (coding.post_read_conversion)) |