1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-21 05:21:37 -07:00

(Finsert_file_contents): Do record_insert, then inc MODIFF.

This commit is contained in:
Richard M. Stallman 1992-09-28 07:40:46 +00:00
parent fce33686a6
commit 7d8451f188

View file

@ -2318,8 +2318,10 @@ before the error is signaled.")
}
if (inserted > 0)
MODIFF++;
record_insert (point, inserted);
{
record_insert (point, inserted);
MODIFF++;
}
close (fd);