summaryrefslogtreecommitdiff
path: root/lisp/mail/emacsbug.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-10-19 01:45:21 +0000
committerRichard M. Stallman <rms@gnu.org>1995-10-19 01:45:21 +0000
commit3c9f4122fc9f01c2ee95863238b30fb83bac3c8e (patch)
tree55b262559bdceaf4a5ded15002c01339f19b9cad /lisp/mail/emacsbug.el
parent37ce1ade27a169cac818717e1952956bcc44c4e7 (diff)
downloademacs-3c9f4122fc9f01c2ee95863238b30fb83bac3c8e.tar.gz
(report-emacs-bug): Don't mention
system-configuration-options if it is empty. Make it clearer what that text is.
Diffstat (limited to 'lisp/mail/emacsbug.el')
-rw-r--r--lisp/mail/emacsbug.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index f9299788b42..c5932eb1a96 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -50,8 +50,12 @@ Prompts for bug subject. Leaves you in a mail buffer."
(mail nil bug-gnu-emacs topic)
(goto-char (point-min))
(re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n"))
- (insert "In " (emacs-version) "\nconfigured using "
- system-configuration-options "\n\n")
+ (insert "In " (emacs-version) "\n")
+ (if (and system-configuration-options
+ (not (equal system-configuration-options "")))
+ (insert "configured using `configure "
+ system-configuration-options "'\n"))
+ (insert "\n")
;; This is so the user has to type something
;; in order to send easily.
(use-local-map (nconc (make-sparse-keymap) (current-local-map)))