diff options
| author | Richard M. Stallman | 1995-10-19 01:45:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-10-19 01:45:21 +0000 |
| commit | 30f2f7c6ed1c8aa838bfe5c954ed084c24627c23 (patch) | |
| tree | fe83b2656d2c59a5a6ea24b8dfa85c48b349b4b0 | |
| parent | 6676cb1c6c7f87893a7a08ec5f0f48f1f7243975 (diff) | |
| download | emacs-30f2f7c6ed1c8aa838bfe5c954ed084c24627c23.tar.gz emacs-30f2f7c6ed1c8aa838bfe5c954ed084c24627c23.zip | |
(report-emacs-bug): Don't mention
system-configuration-options if it is empty.
Make it clearer what that text is.
| -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." | |||
| 50 | (mail nil bug-gnu-emacs topic) | 50 | (mail nil bug-gnu-emacs topic) |
| 51 | (goto-char (point-min)) | 51 | (goto-char (point-min)) |
| 52 | (re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n")) | 52 | (re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n")) |
| 53 | (insert "In " (emacs-version) "\nconfigured using " | 53 | (insert "In " (emacs-version) "\n") |
| 54 | system-configuration-options "\n\n") | 54 | (if (and system-configuration-options |
| 55 | (not (equal system-configuration-options ""))) | ||
| 56 | (insert "configured using `configure " | ||
| 57 | system-configuration-options "'\n")) | ||
| 58 | (insert "\n") | ||
| 55 | ;; This is so the user has to type something | 59 | ;; This is so the user has to type something |
| 56 | ;; in order to send easily. | 60 | ;; in order to send easily. |
| 57 | (use-local-map (nconc (make-sparse-keymap) (current-local-map))) | 61 | (use-local-map (nconc (make-sparse-keymap) (current-local-map))) |