aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-09-27 10:54:55 +0000
committerGerd Moellmann2001-09-27 10:54:55 +0000
commit6eb94ddb0f2e64ca9cd66486ae2aa0b76fe4c2ac (patch)
tree38bef1807802246691b440942724ef41490e4f77
parent14531065acf2747546c0b3e7511779b66afd2274 (diff)
downloademacs-6eb94ddb0f2e64ca9cd66486ae2aa0b76fe4c2ac.tar.gz
emacs-6eb94ddb0f2e64ca9cd66486ae2aa0b76fe4c2ac.zip
(feedmail-queue-send-edit-prompt-help):
Call get-buffer-window first second arg `visible'.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/mail/feedmail.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index cd10d7a2211..bd7c0b05aa0 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12001-09-27 Gerd Moellmann <gerd@gnu.org> 12001-09-27 Gerd Moellmann <gerd@gnu.org>
2 2
3 * mail/feedmail.el (feedmail-queue-send-edit-prompt-help):
4 Call get-buffer-window first second arg `visible'.
5
3 * international/mule-diag.el (list-input-methods-1): Output 6 * international/mule-diag.el (list-input-methods-1): Output
4 something that's independent of Emacs' version. 7 something that's independent of Emacs' version.
5 8
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el
index 2d21c9c45c5..a5679073064 100644
--- a/lisp/mail/feedmail.el
+++ b/lisp/mail/feedmail.el
@@ -1770,7 +1770,7 @@ you can set feedmail-queue-reminder-alist to nil."
1770 1770
1771(defun feedmail-queue-send-edit-prompt-help (d-string) 1771(defun feedmail-queue-send-edit-prompt-help (d-string)
1772 (let ((fqm-help (get-buffer feedmail-p-h-b-n))) 1772 (let ((fqm-help (get-buffer feedmail-p-h-b-n)))
1773 (if (and fqm-help (get-buffer-window fqm-help)) 1773 (if (and fqm-help (get-buffer-window fqm-help 'visible))
1774 (feedmail-queue-send-edit-prompt-help-later fqm-help d-string) 1774 (feedmail-queue-send-edit-prompt-help-later fqm-help d-string)
1775 (feedmail-queue-send-edit-prompt-help-first d-string)))) 1775 (feedmail-queue-send-edit-prompt-help-first d-string))))
1776 1776