Mercurial > emacs
changeset 21312:b5b8f2545eae
(reporter-bug-hook): Fix error message.
(reporter-beautify-list): Break infloop when
reaching the end of the buffer without crossing an unbalanced
paren. Use scan-sexps instead of forward-sexp for the loop break test.
(reporter-submit-bug-report): Only call
display-buffer if pop-up-windows is non-nil.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 29 Mar 1998 02:35:51 +0000 |
parents | a5d6b18d63e5 |
children | 47c514f3eed4 |
files | lisp/mail/reporter.el |
diffstat | 1 files changed, 2 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/reporter.el Sun Mar 29 02:34:11 1998 +0000 +++ b/lisp/mail/reporter.el Sun Mar 29 02:35:51 1998 +0000 @@ -305,12 +305,6 @@ (buffer-substring (match-beginning 0) (match-end 0)))) -;; Serves as an interface to `mail' (sendmail.el), but when the user -;; answers "no" to discarding an unsent message, it gives an error. -(defun reporter-mail (&rest args) - (or (apply 'mail args) - (error "Bug report aborted"))) - (defun reporter-compose-outgoing () ;; compose the outgoing mail buffer, and return the selected ;; paradigm, with the current-buffer tacked onto the beginning of @@ -319,11 +313,11 @@ (compose (get mail-user-agent 'composefunc))) ;; Sanity check. If this fails then we'll try to use the SENDMAIL ;; protocol, otherwise we must signal an error. - (if (not (and compose (fboundp compose))) + (if (not (and compose (functionp compose))) (progn (setq agent 'sendmail-user-agent compose (get agent 'composefunc)) - (if (not (and compose (fboundp compose))) + (if (not (and compose (functionp compose))) (error "Could not find a valid `mail-user-agent'") (ding) (message "`%s' is an invalid `mail-user-agent'; using `sendmail-user-agent'"