aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-09-26 00:20:26 +0000
committerJuanma Barranquero2007-09-26 00:20:26 +0000
commit1daad47dbd2f2b51e52f6c411acd3272a7e7a160 (patch)
treeaf79780fbbc765024c4883abdb283d8883ec1a14
parent7e7ba7a34d22036e03cb3411ae8ef7b9549dff2a (diff)
downloademacs-1daad47dbd2f2b51e52f6c411acd3272a7e7a160.tar.gz
emacs-1daad47dbd2f2b51e52f6c411acd3272a7e7a160.zip
(report-emacs-bug): Use `mapc' rather than `mapcar'.
-rw-r--r--lisp/mail/emacsbug.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index 70c976a154d..e725a8affb0 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -158,7 +158,7 @@ usually do not have translators to read other languages for them.\n\n")
158 (insert "configured using `configure " 158 (insert "configured using `configure "
159 system-configuration-options "'\n\n")) 159 system-configuration-options "'\n\n"))
160 (insert "Important settings:\n") 160 (insert "Important settings:\n")
161 (mapcar 161 (mapc
162 '(lambda (var) 162 '(lambda (var)
163 (insert (format " value of $%s: %s\n" var (getenv var)))) 163 (insert (format " value of $%s: %s\n" var (getenv var))))
164 '("LC_ALL" "LC_COLLATE" "LC_CTYPE" "LC_MESSAGES" 164 '("LC_ALL" "LC_COLLATE" "LC_CTYPE" "LC_MESSAGES"