Mercurial > emacs
changeset 1924:21bd3a2189d3
* 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.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 22 Feb 1993 14:46:31 +0000 |
parents | 3fad322bb72a |
children | 3ddb163a9201 |
files | src/lread.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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; }