From: Kenichi Handa Date: Mon, 7 Jul 2003 01:46:10 +0000 (+0000) Subject: (Fkill_buffer): Clear charpos cache if necessary. X-Git-Tag: ttn-vms-21-2-B4~9464 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b93fb365b3a763c40aed774307dc053472a28f79;p=emacs.git (Fkill_buffer): Clear charpos cache if necessary. --- 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 (tiny change) + + * buffer.c (Fkill_buffer): Clear charpos cache if necessary. + 2003-07-06 Stefan Monnier * 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;