comparison lisp/mail/emacsbug.el @ 35427:21fa311a0352

(report-emacs-bug): Report values of locale-coding-system, default-enable-multibyte-characters, and the environment variables LC_ALL, LC_TYPE, and LANG.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 19 Jan 2001 16:14:09 +0000
parents 65726622c836
children b7516d64c95e
comparison
equal deleted inserted replaced
35426:93ff6e9f4786 35427:21fa311a0352
109 (insert "In " (emacs-version) "\n") 109 (insert "In " (emacs-version) "\n")
110 (if (and system-configuration-options 110 (if (and system-configuration-options
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")
117 (setq user-point (point)) 124 (setq user-point (point))
118 (insert "\n\n\n" 125 (insert "\n\n\n"