diff options
Diffstat (limited to 'lisp/mail/emacsbug.el')
-rw-r--r-- | lisp/mail/emacsbug.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index f686c04536c..68f9dcfea0b 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -408,6 +408,12 @@ copy text to your preferred mail program.\n" "', version " (mapconcat #'number-to-string (x-server-version) ".") "\n") (error t))) + (when (and (boundp 'android-build-fingerprint) + (symbol-value 'android-build-fingerprint)) + ;; This is used on Android. + (insert "Android version and manufacturer: " + (symbol-value 'android-build-fingerprint) + "\n")) (let ((os (ignore-errors (report-emacs-bug--os-description)))) (if (stringp os) (insert "System Description: " os "\n\n"))) |