From 30f2f7c6ed1c8aa838bfe5c954ed084c24627c23 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 19 Oct 1995 01:45:21 +0000 Subject: [PATCH] (report-emacs-bug): Don't mention system-configuration-options if it is empty. Make it clearer what that text is. --- lisp/mail/emacsbug.el | 8 ++++++-- 1 file 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))) -- 2.39.2