aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2020-11-05 15:42:26 +0100
committerStefan Kangas2020-11-05 15:44:17 +0100
commit37c0208aaaed404c35934eba6c3a3efa07e7182d (patch)
treeaf241e48c44dbf2a350a16e205e87896b661efe8
parent771046f5d888c703c875d8629fdf227429a36d3d (diff)
downloademacs-37c0208aaaed404c35934eba6c3a3efa07e7182d.tar.gz
emacs-37c0208aaaed404c35934eba6c3a3efa07e7182d.zip
; Silence byte-compiler warning in xdisp-tests.el
* test/src/xdisp-tests.el (xdisp-tests--minibuffer-scroll): Silence byte-compiler.
-rw-r--r--test/src/xdisp-tests.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/xdisp-tests.el b/test/src/xdisp-tests.el
index fad90fad531..a7e05a57de9 100644
--- a/test/src/xdisp-tests.el
+++ b/test/src/xdisp-tests.el
@@ -57,9 +57,9 @@
57 (xdisp-tests--in-minibuffer 57 (xdisp-tests--in-minibuffer
58 (let ((max-mini-window-height 4)) 58 (let ((max-mini-window-height 4))
59 (dotimes (_ 80) (insert "\nhello")) 59 (dotimes (_ 80) (insert "\nhello"))
60 (beginning-of-buffer) 60 (goto-char (point-min))
61 (redisplay 'force) 61 (redisplay 'force)
62 (end-of-buffer) 62 (goto-char (point-max))
63 ;; A simple edit like removing the last `o' shouldn't cause 63 ;; A simple edit like removing the last `o' shouldn't cause
64 ;; the rest of the minibuffer's text to move. 64 ;; the rest of the minibuffer's text to move.
65 (list 65 (list