# HG changeset patch # User Jim Blandy # Date 730392793 0 # Node ID 129d8225f7482585155d97d5982b792c38c012bf # Parent 1cdbdbe2f70adf9ad720311b914e7632bef29c23 * 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. diff -r 1cdbdbe2f70a -r 129d8225f748 src/window.c --- a/src/window.c Mon Feb 22 14:52:32 1993 +0000 +++ b/src/window.c Mon Feb 22 14:53:13 1993 +0000 @@ -2262,7 +2262,7 @@ } Fset_marker (w->pointm, make_number (point), Qnil); - unbind_to (count); + unbind_to (count, Qnil); return Qnil; } @@ -2632,7 +2632,7 @@ 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))