]> git.eshelyaron.com Git - emacs.git/commitdiff
(report-emacs-bug): Don't mention
authorRichard M. Stallman <rms@gnu.org>
Thu, 19 Oct 1995 01:45:21 +0000 (01:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 19 Oct 1995 01:45:21 +0000 (01:45 +0000)
system-configuration-options if it is empty.
Make it clearer what that text is.

lisp/mail/emacsbug.el

index f9299788b4215feec46e8d4a7dba857007ba839c..c5932eb1a96a28c78a5555239f344a32e9e76588 100644 (file)
@@ -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)))