]> git.eshelyaron.com Git - emacs.git/commitdiff
(sc-attribs-filter-namelist): Use mapc rather than mapcar.
authorGlenn Morris <rgm@gnu.org>
Fri, 28 Sep 2007 03:27:02 +0000 (03:27 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 28 Sep 2007 03:27:02 +0000 (03:27 +0000)
lisp/mail/supercite.el

index cf9c9369497fd269ad829ea526222ddadd30256b..61e7d0a00ebb274c24f6d914dec9835443f2198e 100644 (file)
@@ -1038,12 +1038,12 @@ supplied, is used instead of the line point is on in the current buffer."
   (let ((elements (length namelist))
        (position -1)
        keepers filtered-list)
-    (mapcar
+    (mapc
      (function
       (lambda (name)
        (setq position (1+ position))
        (let ((keep-p t))
-         (mapcar
+         (mapc
           (function
            (lambda (filter)
              (let ((regexp (car filter))
@@ -1061,7 +1061,7 @@ supplied, is used instead of the line point is on in the current buffer."
              (setq keepers (cons position keepers)))
          )))
      namelist)
-    (mapcar
+    (mapc
      (function
       (lambda (position)
        (setq filtered-list (cons (nth position namelist) filtered-list))