From: Stefan Monnier Date: Mon, 17 Jun 2002 18:45:01 +0000 (+0000) Subject: (Fset_window_configuration): Lisp_Object/int mixup. X-Git-Tag: ttn-vms-21-2-B4~14569 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=18787f5e9efcc49439ee0e0f026d9838b531d867;p=emacs.git (Fset_window_configuration): Lisp_Object/int mixup. --- diff --git a/src/window.c b/src/window.c index 2e0f57dd1a9..a63b91f7663 100644 --- a/src/window.c +++ b/src/window.c @@ -5147,7 +5147,7 @@ the return value is nil. Otherwise the value is t. */) selected_window = Qnil; if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer)) set_marker_restricted (XWINDOW (data->current_window)->pointm, - old_point, + make_number (old_point), XWINDOW (data->current_window)->buffer); Fselect_window (data->current_window);