diff options
Diffstat (limited to 'lisp/gnus/webmail.el')
-rw-r--r-- | lisp/gnus/webmail.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/gnus/webmail.el b/lisp/gnus/webmail.el index c238134749a..52b2ed82a79 100644 --- a/lisp/gnus/webmail.el +++ b/lisp/gnus/webmail.el @@ -196,10 +196,9 @@ (defun webmail-debug (str) (with-temp-buffer (insert "\n---------------- A bug at " str " ------------------\n") - (mapcar #'(lambda (sym) - (if (boundp sym) - (gnus-pp `(setq ,sym ',(eval sym))))) - '(webmail-type user)) + (dolist (sym '(webmail-type user)) + (if (boundp sym) + (gnus-pp `(setq ,sym ',(eval sym))))) (insert "---------------- webmail buffer ------------------\n\n") (insert-buffer-substring webmail-buffer) (insert "\n---------------- end of buffer ------------------\n\n") |