diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-09-25 11:07:06 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-09-25 11:07:06 +0000 |
commit | cc6650afd62e15a828d7f751dba72ca096d647f6 (patch) | |
tree | 4c1a0f6b36fe149891376db511c522d9363cb066 /lisp/help.el | |
parent | 3731290f9efcdf0b00c012ff82006265fb7d2d37 (diff) | |
download | emacs-cc6650afd62e15a828d7f751dba72ca096d647f6.tar.gz |
(view-emacs-news): Use `mapc' rather than `mapcar'.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index 8d8ea7c206f..b957f88a7e4 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -334,7 +334,7 @@ With argument, display info only for the selected version." (when (consp version) (let* ((all-versions (let (res) - (mapcar + (mapc (lambda (file) (with-temp-buffer (insert-file-contents |