]> git.eshelyaron.com Git - emacs.git/commitdiff
(report-emacs-bug): Report values of
authorEli Zaretskii <eliz@gnu.org>
Fri, 19 Jan 2001 16:15:51 +0000 (16:15 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 19 Jan 2001 16:15:51 +0000 (16:15 +0000)
locale-coding-system, default-enable-multibyte-characters, and the
environment variables LC_ALL, LC_TYPE, and LANG.

lisp/ChangeLog
lisp/mail/emacsbug.el

index 35326df71f5f275773405aedaf635709320db61d..b215f8cded3e33c03cfb0ed1352fe471a33b4d57 100644 (file)
@@ -1,3 +1,9 @@
+2001-01-19  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * mail/emacsbug.el (report-emacs-bug): Report values of
+       locale-coding-system, default-enable-multibyte-characters, and the
+       environment variables LC_ALL, LC_TYPE, and LANG.
+
 2001-01-19  Gerd Moellmann  <gerd@gnu.org>
 
        * font-lock.el (font-lock-default-fontify-region): Fix last
index 5065a747daf8e475d4aafb63e3d8c01304f4ab8d..89b47fcbc97ca85570f922d9d606c548b6326ab9 100644 (file)
@@ -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")