aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorJim Blandy <[email protected]>1993-02-22 14:53:13 +0000
committerJim Blandy <[email protected]>1993-02-22 14:53:13 +0000
commitf4e7b2c2ea9f6f4d7a7b09298f7a47159376b64b (patch)
treed90a6627508746161695c82e9e4008baa73e705c /src/window.c
parent0df58c91cfa73fc04689ca5c36096274fd414871 (diff)
* keyboard.c (recursive_edit_1, command_loop_1): Pass the proper
number of arguments to unbind_to. * lread.c (Feval_buffer): Same. * window.c (Fscroll_other_window): Same. * window.c (Fset_window_configuration): Pass the proper number of arguments to Fselect_frame.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c
index 85b1c5018b..82e39545a2 100644
--- a/src/window.c
+++ b/src/window.c
@@ -2262,7 +2262,7 @@ showing that buffer, popping the buffer up if necessary.")
}
Fset_marker (w->pointm, make_number (point), Qnil);
- unbind_to (count);
+ unbind_to (count, Qnil);
return Qnil;
}
@@ -2632,7 +2632,7 @@ by `current-window-configuration' (which see).")
Fselect_window above totally superfluous; it still sets f's
selected window. */
if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
- Fselect_frame (data->selected_frame);
+ Fselect_frame (data->selected_frame, Qnil);
#endif
if (!NILP (new_current_buffer))