diff options
| author | Eli Zaretskii <eliz@gnu.org> | 2012-01-28 12:49:17 +0200 |
|---|---|---|
| committer | Eli Zaretskii <eliz@gnu.org> | 2012-01-28 12:49:17 +0200 |
| commit | 4d4ec1f815374dbb14907029cbfdf0c80148a032 (patch) | |
| tree | fedba973ecaf63b329edc0241410981477e0c2a2 /lisp/mail/emacsbug.el | |
| parent | 7c188927ac3d28dfa2fa79e9dd25de85627b505b (diff) | |
| download | emacs-4d4ec1f815374dbb14907029cbfdf0c80148a032.tar.gz | |
Fix bug #9924 with long display of system-configuration-options in emacsbug.el.
lisp/mail/emacsbug.el (report-emacs-bug): Fill the potentially long
line that displays system-configuration-options.
Diffstat (limited to 'lisp/mail/emacsbug.el')
| -rw-r--r-- | lisp/mail/emacsbug.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index 0e30727d483..29ce1881f5d 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -231,10 +231,11 @@ usually do not have translators for other languages.\n\n"))) "', version " (mapconcat 'number-to-string (x-server-version) ".") "\n") (error t))) - (if (and system-configuration-options - (not (equal system-configuration-options ""))) - (insert "configured using `configure " - system-configuration-options "'\n\n")) + (when (and system-configuration-options + (not (equal system-configuration-options ""))) + (insert "Configured using:\n `configure " + system-configuration-options "'\n\n") + (fill-region (line-beginning-position -1) (point))) (insert "Important settings:\n") (mapc (lambda (var) |
