mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Port report-emacs-bug to deterministic builds
* lisp/mail/emacsbug.el (report-emacs-bug): Future-proof the recent "built on" change to deterministic builds where emacs-build-system will be nil. See: http://lists.gnu.org/archive/html/emacs-devel/2015-12/msg01369.html
This commit is contained in:
parent
11fe8e485e
commit
3f09548ecb
1 changed files with 5 additions and 1 deletions
|
|
@ -242,7 +242,11 @@ 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) " built on " emacs-build-system "\n")
|
||||
(insert "\n\nIn " (emacs-version))
|
||||
(if emacs-build-system
|
||||
(insert " built on " emacs-build-system))
|
||||
(insert "\n")
|
||||
|
||||
(if (stringp emacs-repository-version)
|
||||
(insert "Repository revision: " emacs-repository-version "\n"))
|
||||
(if (fboundp 'x-server-vendor)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue