diff options
| -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) |