+2001-04-26 Gerd Moellmann <gerd@gnu.org>
+
+ * editfns.c (save_excursion_restore): Don't use XBUFFER on
+ a non-buffer.
+
2001-04-25 Gerd Moellmann <gerd@gnu.org>
* term.c (toggle_highlight): New function.
tem = XCDR (info);
if (visible_p
&& !EQ (tem, selected_window)
- /* This also verifies that the window is still live. */
- && XBUFFER (XWINDOW (tem)->buffer) == current_buffer)
+ && (tem1 = XWINDOW (tem)->buffer,
+ (/* Window is live... */
+ BUFFERP (tem1)
+ /* ...and it shows the current buffer. */
+ && XBUFFER (tem1) == current_buffer)))
Fset_window_point (tem, make_number (PT));
UNGCPRO;