diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-10-19 01:45:21 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-10-19 01:45:21 +0000 |
commit | 30f2f7c6ed1c8aa838bfe5c954ed084c24627c23 (patch) | |
tree | fe83b2656d2c59a5a6ea24b8dfa85c48b349b4b0 /lisp/mail/emacsbug.el | |
parent | 6676cb1c6c7f87893a7a08ec5f0f48f1f7243975 (diff) | |
download | emacs-30f2f7c6ed1c8aa838bfe5c954ed084c24627c23.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.el | 8 |
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))) |