aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2002-06-17 18:45:01 +0000
committerStefan Monnier2002-06-17 18:45:01 +0000
commit18787f5e9efcc49439ee0e0f026d9838b531d867 (patch)
tree3318072406082c89186e7bc1eea67120601a022d /src
parent922bc663eabd88b41351c248c0f932c70e65cc56 (diff)
downloademacs-18787f5e9efcc49439ee0e0f026d9838b531d867.tar.gz
emacs-18787f5e9efcc49439ee0e0f026d9838b531d867.zip
(Fset_window_configuration): Lisp_Object/int mixup.
Diffstat (limited to 'src')
-rw-r--r--src/window.c2
1 files changed, 1 insertions, 1 deletions
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. */)
5147 selected_window = Qnil; 5147 selected_window = Qnil;
5148 if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer)) 5148 if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer))
5149 set_marker_restricted (XWINDOW (data->current_window)->pointm, 5149 set_marker_restricted (XWINDOW (data->current_window)->pointm,
5150 old_point, 5150 make_number (old_point),
5151 XWINDOW (data->current_window)->buffer); 5151 XWINDOW (data->current_window)->buffer);
5152 5152
5153 Fselect_window (data->current_window); 5153 Fselect_window (data->current_window);