diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-01-19 16:15:51 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-01-19 16:15:51 +0000 |
commit | dc81f8a23b85278570cd29a7ef41d5293ad4716d (patch) | |
tree | 63fdb8c26cdd0ae413cfed0cfdca67ced6df9173 /lisp/mail/emacsbug.el | |
parent | 755b45ce476691549db877b64be9fb5b0729cadf (diff) | |
download | emacs-dc81f8a23b85278570cd29a7ef41d5293ad4716d.tar.gz |
(report-emacs-bug): Report values of
locale-coding-system, default-enable-multibyte-characters, and the
environment variables LC_ALL, LC_TYPE, and LANG.
Diffstat (limited to 'lisp/mail/emacsbug.el')
-rw-r--r-- | lisp/mail/emacsbug.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index 5065a747daf..89b47fcbc97 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -111,6 +111,13 @@ translators to read other languages for them.\n\n")) (not (equal system-configuration-options ""))) (insert "configured using `configure " system-configuration-options "'\n")) + (insert "Important settings:\n") + (insert (format " value of $LC_ALL: %s\n" (getenv "LC_ALL"))) + (insert (format " value of $LC_TYPE: %s\n" (getenv "LC_TYPE"))) + (insert (format " value of $LANG: %s\n" (getenv "LANG"))) + (insert (format " locale-coding-system: %s\n" locale-coding-system)) + (insert (format " default-enable-multibyte-characters: %s\n" + default-enable-multibyte-characters)) (insert "\n") (insert "Please describe exactly what actions triggered the bug\n" "and the precise symptoms of the bug:\n\n") |