diff options
| author | Eli Zaretskii | 2020-11-07 10:44:30 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2020-11-07 10:44:30 +0200 |
| commit | bc76afd355c0a6608830e2b43c8c67243aa0fa7b (patch) | |
| tree | ec8700c6ba1b5ebef9b4eb4497bb6bfdb091c7e0 /src | |
| parent | 33e2418a7cfd2ac1b98b86c5ddaf99c1d90daaf0 (diff) | |
| download | emacs-bc76afd355c0a6608830e2b43c8c67243aa0fa7b.tar.gz emacs-bc76afd355c0a6608830e2b43c8c67243aa0fa7b.zip | |
; * src/xdisp.c (redisplay_window): Add comment for a recent change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index bff14e584de..0001bcd98d2 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -18820,6 +18820,10 @@ redisplay_window (Lisp_Object window, bool just_this_one_p) | |||
| 18820 | 18820 | ||
| 18821 | /* Try to scroll by specified few lines. */ | 18821 | /* Try to scroll by specified few lines. */ |
| 18822 | if ((0 < scroll_conservatively | 18822 | if ((0 < scroll_conservatively |
| 18823 | /* FIXME: the option is supposed to affect minibuffers, but we | ||
| 18824 | test MINI_WINDOW_P, which can also catch uses of | ||
| 18825 | mini-windows for displaying the echo area. Do we need to | ||
| 18826 | distinguish these two use cases? */ | ||
| 18823 | || (scroll_minibuffer_conservatively && MINI_WINDOW_P (w)) | 18827 | || (scroll_minibuffer_conservatively && MINI_WINDOW_P (w)) |
| 18824 | || 0 < emacs_scroll_step | 18828 | || 0 < emacs_scroll_step |
| 18825 | || temp_scroll_step | 18829 | || temp_scroll_step |