summaryrefslogtreecommitdiff
path: root/lisp/mail
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2019-06-13 01:29:27 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2019-06-13 01:29:27 +0200
commit9645b5752a3e40754d22d9e805778e95fdc86337 (patch)
treef3788f8e1b3067f070256ee3c33be9436945e03a /lisp/mail
parent1743da11d0fdbb24f6c6e8d084e98d0b6e4d3f62 (diff)
downloademacs-9645b5752a3e40754d22d9e805778e95fdc86337.tar.gz
Compilation warning fix in feedmail.el
* lisp/mail/feedmail.el (feedmail-scroll-buffer): Remove XEmacs compat code (that gave a compilation warning).
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/feedmail.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el
index 180e32bee4c..943bdd88510 100644
--- a/lisp/mail/feedmail.el
+++ b/lisp/mail/feedmail.el
@@ -2198,8 +2198,7 @@ you can set `feedmail-queue-reminder-alist' to nil."
;; emacs convention is that scroll-up moves text up, window down
(feedmail-say-debug ">in-> feedmail-scroll-buffer %s" direction)
(save-selected-window
- (let ((signal-error-on-buffer-boundary nil) ;FIXME: Unknown var!?
- (fqm-window (display-buffer (if buffy buffy (current-buffer)))))
+ (let ((fqm-window (display-buffer (if buffy buffy (current-buffer)))))
(select-window fqm-window)
(if (eq direction 'up)
(if (pos-visible-in-window-p (point-max) fqm-window)