aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1992-09-28 07:40:46 +0000
committerRichard M. Stallman1992-09-28 07:40:46 +0000
commit7d8451f188123e72ee48ebcc0d601a85b0d4aa0a (patch)
tree6924917aea13dde41684d56b5ccf285cfadbff6a
parentfce33686a65929005b609259c620eb2a9c577486 (diff)
downloademacs-7d8451f188123e72ee48ebcc0d601a85b0d4aa0a.tar.gz
emacs-7d8451f188123e72ee48ebcc0d601a85b0d4aa0a.zip
(Finsert_file_contents): Do record_insert, then inc MODIFF.
-rw-r--r--src/fileio.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 0f550733223..a7c2ef25efa 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2318,8 +2318,10 @@ before the error is signaled.")
2318 } 2318 }
2319 2319
2320 if (inserted > 0) 2320 if (inserted > 0)
2321 MODIFF++; 2321 {
2322 record_insert (point, inserted); 2322 record_insert (point, inserted);
2323 MODIFF++;
2324 }
2323 2325
2324 close (fd); 2326 close (fd);
2325 2327