From: Kenichi Handa Date: Mon, 7 Jul 2003 01:52:25 +0000 (+0000) Subject: (Fkill_buffer): Clear charpos cache if necessary. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1bdd63814a114f283844db7509fb8f086442ba68;p=emacs.git (Fkill_buffer): Clear charpos cache if necessary. --- diff --git a/src/ChangeLog b/src/ChangeLog index bd451679f26..3fd496a0d7f 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-06-10 Andreas Schwab * window.c (window_scroll_pixel_based): Move outside a diff --git a/src/buffer.c b/src/buffer.c index 29a90fb99c9..7a4fb3b69db 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -1302,6 +1302,7 @@ with SIGHUP.") #endif /* CLASH_DETECTION */ kill_buffer_processes (buf); + clear_charpos_cache (b); tem = Vinhibit_quit; Vinhibit_quit = Qt;