* keyboard.c (recursive_edit_1, command_loop_1): Pass the proper
authorJim Blandy <jimb@redhat.com>
Mon, 22 Feb 1993 14:46:31 +0000 (14:46 +0000)
committerJim Blandy <jimb@redhat.com>
Mon, 22 Feb 1993 14:46:31 +0000 (14:46 +0000)
number of arguments to unbind_to.
* lread.c (Feval_buffer): Same.
* window.c (Fscroll_other_window): Same.

src/lread.c

index 9c38939..45b2265 100644 (file)
@@ -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;
 }