Mercurial > emacs
changeset 13251:a9a0c4c57a07
(report-emacs-bug): Don't mention
system-configuration-options if it is empty.
Make it clearer what that text is.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 19 Oct 1995 01:45:21 +0000 |
parents | 52e053f46f76 |
children | 0701fab73d81 |
files | lisp/mail/emacsbug.el |
diffstat | 1 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/emacsbug.el Thu Oct 19 00:50:51 1995 +0000 +++ b/lisp/mail/emacsbug.el Thu Oct 19 01:45:21 1995 +0000 @@ -50,8 +50,12 @@ (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)))