diff options
| author | Kenichi Handa | 2003-07-07 01:46:10 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-07-07 01:46:10 +0000 |
| commit | b93fb365b3a763c40aed774307dc053472a28f79 (patch) | |
| tree | 0b1ddac5cff273e8faa3f281e51ed98975ea0e4c /src | |
| parent | f9b9ccef8e30c20c68b185db50bafaf823552f9c (diff) | |
| download | emacs-b93fb365b3a763c40aed774307dc053472a28f79.tar.gz emacs-b93fb365b3a763c40aed774307dc053472a28f79.zip | |
(Fkill_buffer): Clear charpos cache if necessary.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/buffer.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 634bc3f9a61..174c2b47174 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-07-07 Nozomu Ando <nand@mac.com> (tiny change) | ||
| 2 | |||
| 3 | * buffer.c (Fkill_buffer): Clear charpos cache if necessary. | ||
| 4 | |||
| 1 | 2003-07-06 Stefan Monnier <monnier@cs.yale.edu> | 5 | 2003-07-06 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 6 | ||
| 3 | * alloc.c (live_float_p): Check that p is not past the `floats' array, | 7 | * alloc.c (live_float_p): Check that p is not past the `floats' array, |
diff --git a/src/buffer.c b/src/buffer.c index 66454c7ecc2..b0f1a04e3f2 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1382,6 +1382,7 @@ with SIGHUP. */) | |||
| 1382 | #endif /* CLASH_DETECTION */ | 1382 | #endif /* CLASH_DETECTION */ |
| 1383 | 1383 | ||
| 1384 | kill_buffer_processes (buf); | 1384 | kill_buffer_processes (buf); |
| 1385 | clear_charpos_cache (b); | ||
| 1385 | 1386 | ||
| 1386 | tem = Vinhibit_quit; | 1387 | tem = Vinhibit_quit; |
| 1387 | Vinhibit_quit = Qt; | 1388 | Vinhibit_quit = Qt; |