diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-09-25 11:06:14 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-09-25 11:06:14 +0000 |
commit | 1259dfc955b6dd193def48cbf46127ee5aeb794b (patch) | |
tree | c6d3e97d7a933602bc38a0c8264a8833fe494d5d /lisp/find-lisp.el | |
parent | 458c46fc13df0886d80b37cc6deaa930f867991f (diff) | |
download | emacs-1259dfc955b6dd193def48cbf46127ee5aeb794b.tar.gz |
(find-lisp-insert-directory): Use `mapc' rather than `mapcar'.
Diffstat (limited to 'lisp/find-lisp.el')
-rw-r--r-- | lisp/find-lisp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/find-lisp.el b/lisp/find-lisp.el index 9b1f3275dfc..4c8d8bea215 100644 --- a/lisp/find-lisp.el +++ b/lisp/find-lisp.el @@ -270,7 +270,7 @@ It is a function which takes two arguments, the directory and its parent." ;; No analog for find-lisp? (insert find-lisp-line-indent "\n") ;; Run the find function - (mapcar + (mapc (function (lambda(file) (find-lisp-find-dired-insert-file |