aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-01-19 16:15:51 +0000
committerEli Zaretskii2001-01-19 16:15:51 +0000
commitdc81f8a23b85278570cd29a7ef41d5293ad4716d (patch)
tree63fdb8c26cdd0ae413cfed0cfdca67ced6df9173
parent755b45ce476691549db877b64be9fb5b0729cadf (diff)
downloademacs-dc81f8a23b85278570cd29a7ef41d5293ad4716d.tar.gz
emacs-dc81f8a23b85278570cd29a7ef41d5293ad4716d.zip
(report-emacs-bug): Report values of
locale-coding-system, default-enable-multibyte-characters, and the environment variables LC_ALL, LC_TYPE, and LANG.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/mail/emacsbug.el7
2 files changed, 13 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 35326df71f5..b215f8cded3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * mail/emacsbug.el (report-emacs-bug): Report values of
4 locale-coding-system, default-enable-multibyte-characters, and the
5 environment variables LC_ALL, LC_TYPE, and LANG.
6
12001-01-19 Gerd Moellmann <gerd@gnu.org> 72001-01-19 Gerd Moellmann <gerd@gnu.org>
2 8
3 * font-lock.el (font-lock-default-fontify-region): Fix last 9 * font-lock.el (font-lock-default-fontify-region): Fix last
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"))
111 (not (equal system-configuration-options ""))) 111 (not (equal system-configuration-options "")))
112 (insert "configured using `configure " 112 (insert "configured using `configure "
113 system-configuration-options "'\n")) 113 system-configuration-options "'\n"))
114 (insert "Important settings:\n")
115 (insert (format " value of $LC_ALL: %s\n" (getenv "LC_ALL")))
116 (insert (format " value of $LC_TYPE: %s\n" (getenv "LC_TYPE")))
117 (insert (format " value of $LANG: %s\n" (getenv "LANG")))
118 (insert (format " locale-coding-system: %s\n" locale-coding-system))
119 (insert (format " default-enable-multibyte-characters: %s\n"
120 default-enable-multibyte-characters))
114 (insert "\n") 121 (insert "\n")
115 (insert "Please describe exactly what actions triggered the bug\n" 122 (insert "Please describe exactly what actions triggered the bug\n"
116 "and the precise symptoms of the bug:\n\n") 123 "and the precise symptoms of the bug:\n\n")