summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog4
-rw-r--r--src/buffer.c1
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 @@
+2003-07-07 Nozomu Ando <nand@mac.com> (tiny change)
+
+ * buffer.c (Fkill_buffer): Clear charpos cache if necessary.
+
2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
* 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. */)
#endif /* CLASH_DETECTION */
kill_buffer_processes (buf);
+ clear_charpos_cache (b);
tem = Vinhibit_quit;
Vinhibit_quit = Qt;