From 8768d63036306a18e1684decee8270a4bd63dd9e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 29 Apr 1994 20:00:51 +0000 Subject: [PATCH] (Fminibuffer_complete): Add third arg to Fset_window_start. --- src/minibuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/minibuf.c b/src/minibuf.c index fc3af0599d2..d325ebca5cc 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1196,7 +1196,7 @@ scroll the window of possible completions.") tem = Fpos_visible_in_window_p (make_number (ZV), window); if (! NILP (tem)) /* If end is in view, scroll up to the beginning. */ - Fset_window_start (window, BEGV); + Fset_window_start (window, BEGV, Qnil); else /* Else scroll down one screen. */ Fscroll_other_window (Qnil); -- 2.39.5