diff options
| author | Richard M. Stallman | 1994-04-29 20:00:51 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-29 20:00:51 +0000 |
| commit | 8768d63036306a18e1684decee8270a4bd63dd9e (patch) | |
| tree | 59ca9979159dabe8ef3a52c1e0294769424237a1 /src | |
| parent | 6b4b52676aff20778d67beb374732be792929d85 (diff) | |
| download | emacs-8768d63036306a18e1684decee8270a4bd63dd9e.tar.gz emacs-8768d63036306a18e1684decee8270a4bd63dd9e.zip | |
(Fminibuffer_complete): Add third arg to Fset_window_start.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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.") | |||
| 1196 | tem = Fpos_visible_in_window_p (make_number (ZV), window); | 1196 | tem = Fpos_visible_in_window_p (make_number (ZV), window); |
| 1197 | if (! NILP (tem)) | 1197 | if (! NILP (tem)) |
| 1198 | /* If end is in view, scroll up to the beginning. */ | 1198 | /* If end is in view, scroll up to the beginning. */ |
| 1199 | Fset_window_start (window, BEGV); | 1199 | Fset_window_start (window, BEGV, Qnil); |
| 1200 | else | 1200 | else |
| 1201 | /* Else scroll down one screen. */ | 1201 | /* Else scroll down one screen. */ |
| 1202 | Fscroll_other_window (Qnil); | 1202 | Fscroll_other_window (Qnil); |