diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-08-02 07:58:13 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-08-02 07:58:13 +0000 |
commit | ef58099133e5591c06630d8064d215183eb95c8b (patch) | |
tree | cf7d24eda4910f74f0c02499bb52410b094f758c /src/editfns.c | |
parent | eccf8697a79e0aa5dd98425e5cc5b2750ce5e308 (diff) | |
download | emacs-ef58099133e5591c06630d8064d215183eb95c8b.tar.gz |
(save_excursion_restore): Never make the buffer visible.
Diffstat (limited to 'src/editfns.c')
-rw-r--r-- | src/editfns.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/editfns.c b/src/editfns.c index f404732a9e7..44511f6bb9d 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -312,10 +312,15 @@ save_excursion_restore (info) Fset_marker (current_buffer->mark, tem, Fcurrent_buffer ()); unchain_marker (tem); tem = Fcdr (Fcdr (info)); +#if 0 /* We used to make the current buffer visible in the selected window + if that was true previously. That avoids some anomalies. + But it creates others, and it wasn't documented, and it is simpler + and cleaner never to alter the window/buffer connections. */ tem1 = Fcar (tem); if (!NILP (tem1) && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer)) Fswitch_to_buffer (Fcurrent_buffer (), Qnil); +#endif /* 0 */ tem1 = current_buffer->mark_active; current_buffer->mark_active = Fcdr (tem); |