diff options
| author | Paul Eggert | 2015-12-28 18:43:09 -0800 |
|---|---|---|
| committer | Paul Eggert | 2015-12-28 18:43:43 -0800 |
| commit | 3f09548ecb183964bbbb7d8438abd8813983dbb1 (patch) | |
| tree | bb771384153cb22fb6e057399c0aec8e5e701c4d | |
| parent | 11fe8e485e313c2f800f16693993946f56e38f33 (diff) | |
| download | emacs-3f09548ecb183964bbbb7d8438abd8813983dbb1.tar.gz emacs-3f09548ecb183964bbbb7d8438abd8813983dbb1.zip | |
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
| -rw-r--r-- | lisp/mail/emacsbug.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index ae0e711d814..ef5e86a6c8b 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el | |||
| @@ -242,7 +242,11 @@ usually do not have translators for other languages.\n\n"))) | |||
| 242 | (let ((txt (delete-and-extract-region (1+ user-point) (point)))) | 242 | (let ((txt (delete-and-extract-region (1+ user-point) (point)))) |
| 243 | (insert (propertize "\n" 'display txt))) | 243 | (insert (propertize "\n" 'display txt))) |
| 244 | 244 | ||
| 245 | (insert "\n\nIn " (emacs-version) " built on " emacs-build-system "\n") | 245 | (insert "\n\nIn " (emacs-version)) |
| 246 | (if emacs-build-system | ||
| 247 | (insert " built on " emacs-build-system)) | ||
| 248 | (insert "\n") | ||
| 249 | |||
| 246 | (if (stringp emacs-repository-version) | 250 | (if (stringp emacs-repository-version) |
| 247 | (insert "Repository revision: " emacs-repository-version "\n")) | 251 | (insert "Repository revision: " emacs-repository-version "\n")) |
| 248 | (if (fboundp 'x-server-vendor) | 252 | (if (fboundp 'x-server-vendor) |