diff options
author | Kenichi Handa <handa@m17n.org> | 1998-01-22 02:15:35 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1998-01-22 02:15:35 +0000 |
commit | 0ffe308db73c87957a84155ec85b48efae9fd480 (patch) | |
tree | c7b24c8d036e9685b729f9c632e450949562517a | |
parent | 18e322f1c2881838b38ea2bdbe26b3552ec84883 (diff) | |
download | emacs-0ffe308db73c87957a84155ec85b48efae9fd480.tar.gz |
(Finsert_file_contents): Fix previous change.
-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\ current_buffer->buffer_file_type = Qt; #endif - record_insert (PT, inserted_chars); + record_insert (PT, inserted); /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ - offset_intervals (current_buffer, PT, inserted_chars); + offset_intervals (current_buffer, PT, inserted); MODIFF++; if (! NILP (coding.post_read_conversion)) |