]> git.eshelyaron.com Git - emacs.git/commitdiff
(reporter-bug-hook): Fix error message.
authorRichard M. Stallman <rms@gnu.org>
Sun, 29 Mar 1998 02:35:51 +0000 (02:35 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 29 Mar 1998 02:35:51 +0000 (02:35 +0000)
(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.

lisp/mail/reporter.el

index 59cea3ae4c60ad99e243a5dc927db1ec094128a2..ce245d76b85d1ba60525cd39ede28b1ff287f765 100644 (file)
@@ -305,12 +305,6 @@ composed.")
     (buffer-substring (match-beginning 0) (match-end 0))))
 
 \f
-;; 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 @@ composed.")
         (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'"