diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/mail/feedmail.el | 2 |
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 @@ | |||
| 1 | 2001-09-27 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-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 | ||