From cb09ab7ae148496ba47fe699234a60e6e1a36aa2 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 22 Feb 1993 14:46:31 +0000 Subject: [PATCH] * 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. --- src/lread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lread.c b/src/lread.c index 9c38939f51..45b2265f49 100644 --- a/src/lread.c +++ b/src/lread.c @@ -597,7 +597,7 @@ point remains at the end of the last character read from the buffer.") 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; } -- 2.20.1