# HG changeset patch # User Jim Blandy # Date 730392391 0 # Node ID 21bd3a2189d39a8517e6f3dacffa98f375091d86 # Parent 3fad322bb72a5f64edc25bfe4c9d948bffafd0e1 * 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. diff -r 3fad322bb72a -r 21bd3a2189d3 src/lread.c --- a/src/lread.c Mon Feb 22 14:45:23 1993 +0000 +++ b/src/lread.c Mon Feb 22 14:46:31 1993 +0000 @@ -597,7 +597,7 @@ record_unwind_protect (save_excursion_restore, save_excursion_save ()); BUF_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf))); readevalloop (buf, 0, Feval, !NILP (printflag)); - unbind_to (count); + unbind_to (count, Qnil); return Qnil; }