diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-03-29 15:31:58 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-03-29 15:31:58 +0000 |
commit | 249dd4090e4940019b1df5f3971ed49a79076034 (patch) | |
tree | fc90a930f738959058be3ddaf3a032f711185df3 /lisp/mail/emacsbug.el | |
parent | 7cd5f1e7eef61f436b6abd00138d4868a1bf1960 (diff) | |
download | emacs-249dd4090e4940019b1df5f3971ed49a79076034.tar.gz |
(report-emacs-bug): Report LC_COLLATE,
LC_MESSAGES, LC_MONETARY, LC_NUMERIC, and LC_TIME as well.
From Paul Eggert.
Diffstat (limited to 'lisp/mail/emacsbug.el')
-rw-r--r-- | lisp/mail/emacsbug.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index 2e290e639dd..2d09083cc61 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -120,9 +120,11 @@ translators to read other languages for them.\n\n") (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_CTYPE: %s\n" (getenv "LC_CTYPE"))) - (insert (format " value of $LANG: %s\n" (getenv "LANG"))) + (mapcar + '(lambda (var) + (insert (format " value of $%s: %s\n" var (getenv var)))) + '("LC_ALL" "LC_COLLATE" "LC_CTYPE" "LC_MESSAGES" + "LC_MONETARY" "LC_NUMERIC" "LC_TIME" "LANG")) (insert (format " locale-coding-system: %s\n" locale-coding-system)) (insert (format " default-enable-multibyte-characters: %s\n" default-enable-multibyte-characters)) |