Mercurial > emacs
comparison src/fileio.c @ 1240:7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 28 Sep 1992 07:40:46 +0000 |
parents | 567860ca77e0 |
children | b8337cdf2e8b |
comparison
equal
deleted
inserted
replaced
1239:52afa4976154 | 1240:7365d006d0a0 |
---|---|
2316 Z += this; | 2316 Z += this; |
2317 inserted += this; | 2317 inserted += this; |
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 |
2326 /* Discard the unwind protect */ | 2328 /* Discard the unwind protect */ |
2327 specpdl_ptr = specpdl + count; | 2329 specpdl_ptr = specpdl + count; |