diff options
| author | Richard M. Stallman | 2005-05-13 23:09:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-05-13 23:09:41 +0000 |
| commit | 6840d3505d26ba586cc8b9b07441299efd642050 (patch) | |
| tree | 827f3a2f0ffb418aa48c217e52b158748adcba19 /src | |
| parent | d90b02af14c8dd515d42c77c93c8d156df5742f8 (diff) | |
| download | emacs-6840d3505d26ba586cc8b9b07441299efd642050.tar.gz emacs-6840d3505d26ba586cc8b9b07441299efd642050.zip | |
(Finsert_file_contents): Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/fileio.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b89d61d2d52..70e78fd7731 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -51,7 +51,6 @@ | |||
| 51 | (unexec_malloc, unexec_realloc, unexec_free): Store and use | 51 | (unexec_malloc, unexec_realloc, unexec_free): Store and use |
| 52 | allocated size information in unexec_malloc_header. | 52 | allocated size information in unexec_malloc_header. |
| 53 | 53 | ||
| 54 | >>>>>>> 1.4385 | ||
| 55 | 2005-05-10 Richard M. Stallman <rms@gnu.org> | 54 | 2005-05-10 Richard M. Stallman <rms@gnu.org> |
| 56 | 55 | ||
| 57 | * xterm.c (noinclude): Add #undef. | 56 | * xterm.c (noinclude): Add #undef. |
diff --git a/src/fileio.c b/src/fileio.c index 6edcf45da50..0956fb9d134 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -4516,8 +4516,10 @@ actually used. */) | |||
| 4516 | 4516 | ||
| 4517 | if (inserted == 0) | 4517 | if (inserted == 0) |
| 4518 | { | 4518 | { |
| 4519 | #ifdef CLASH_DETECTION | ||
| 4519 | if (we_locked_file) | 4520 | if (we_locked_file) |
| 4520 | unlock_file (current_buffer->file_truename); | 4521 | unlock_file (current_buffer->file_truename); |
| 4522 | #endif | ||
| 4521 | Vdeactivate_mark = old_Vdeactivate_mark; | 4523 | Vdeactivate_mark = old_Vdeactivate_mark; |
| 4522 | } | 4524 | } |
| 4523 | 4525 | ||