# HG changeset patch # User Eli Zaretskii # Date 979920849 0 # Node ID 21fa311a0352f1f45f3da00cde68ebf177ef6c02 # Parent 93ff6e9f4786c1296e38a9c523e725c16d27a196 (report-emacs-bug): Report values of locale-coding-system, default-enable-multibyte-characters, and the environment variables LC_ALL, LC_TYPE, and LANG. diff -r 93ff6e9f4786 -r 21fa311a0352 lisp/mail/emacsbug.el --- a/lisp/mail/emacsbug.el Fri Jan 19 14:56:24 2001 +0000 +++ b/lisp/mail/emacsbug.el Fri Jan 19 16:14:09 2001 +0000 @@ -111,6 +111,13 @@ (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")