aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-02-22 14:46:31 +0000
committerJim Blandy1993-02-22 14:46:31 +0000
commitcb09ab7ae148496ba47fe699234a60e6e1a36aa2 (patch)
treeb8c1aaafd9c566104fdbe0f1452af1a16041f190 /src
parentc6cd5420d3830243f46ed6b59101fa707af27d12 (diff)
downloademacs-cb09ab7ae148496ba47fe699234a60e6e1a36aa2.tar.gz
emacs-cb09ab7ae148496ba47fe699234a60e6e1a36aa2.zip
* 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.
Diffstat (limited to 'src')
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index 9c38939f513..45b2265f49e 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.")
597 record_unwind_protect (save_excursion_restore, save_excursion_save ()); 597 record_unwind_protect (save_excursion_restore, save_excursion_save ());
598 BUF_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf))); 598 BUF_SET_PT (XBUFFER (buf), BUF_BEGV (XBUFFER (buf)));
599 readevalloop (buf, 0, Feval, !NILP (printflag)); 599 readevalloop (buf, 0, Feval, !NILP (printflag));
600 unbind_to (count); 600 unbind_to (count, Qnil);
601 601
602 return Qnil; 602 return Qnil;
603} 603}