diff options
author | Eli Zaretskii <eliz@gnu.org> | 2015-12-25 13:35:08 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2015-12-25 13:35:08 +0200 |
commit | 2dd3581b78a5fe15e0562b1cc2daa6e3afeeec4a (patch) | |
tree | f1bbe81c03fc1995cca7f50ee154700665361421 | |
parent | 94a3606243d3923ac457aeff33f3ce82b65ef6cd (diff) | |
download | emacs-2dd3581b78a5fe15e0562b1cc2daa6e3afeeec4a.tar.gz |
Restore info about the build host in bug reports
* lisp/mail/emacsbug.el (report-emacs-bug): Report the system on
which Emacs was built. This is important information for
investigating bug reports reported by users who don't build their
Emacs.
-rw-r--r-- | lisp/mail/emacsbug.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index 8e28973c43f..bc2dafaea9a 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -234,7 +234,7 @@ usually do not have translators for other languages.\n\n"))) (let ((txt (delete-and-extract-region (1+ user-point) (point)))) (insert (propertize "\n" 'display txt))) - (insert "\n\nIn " (emacs-version) "\n") + (insert "\n\nIn " (emacs-version) " built on " emacs-build-system "\n") (if (stringp emacs-repository-version) (insert "Repository revision: " emacs-repository-version "\n")) (if (fboundp 'x-server-vendor) |