From: Richard M. Stallman Date: Fri, 29 Apr 1994 20:00:51 +0000 (+0000) Subject: (Fminibuffer_complete): Add third arg to Fset_window_start. X-Git-Tag: emacs-19.34~8655 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8768d63036306a18e1684decee8270a4bd63dd9e;p=emacs.git (Fminibuffer_complete): Add third arg to Fset_window_start. --- 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);