diff options
author | Glenn Morris <rgm@gnu.org> | 2007-10-13 03:02:15 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-10-13 03:02:15 +0000 |
commit | fdad1919b9b25c7e19fe6d22e7947634254a4046 (patch) | |
tree | 5fb77dafd84c9edaf4ee038ec04324edf5a3743e /lisp/net/eudcb-ldap.el | |
parent | b86ed609acffe60f36c51cdb5f92ddd168657bd5 (diff) | |
download | emacs-fdad1919b9b25c7e19fe6d22e7947634254a4046.tar.gz |
(eudc-ldap-simple-query-internal): Use mapc rather than mapcar.
Diffstat (limited to 'lisp/net/eudcb-ldap.el')
-rw-r--r-- | lisp/net/eudcb-ldap.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/eudcb-ldap.el b/lisp/net/eudcb-ldap.el index c484c590abf..f286fe761c9 100644 --- a/lisp/net/eudcb-ldap.el +++ b/lisp/net/eudcb-ldap.el @@ -130,7 +130,7 @@ RETURN-ATTRS is a list of attributes to return, defaulting to (setq result (eudc-filter-partial-records result return-attrs))) ;; Apply eudc-duplicate-attribute-handling-method (if (not (eq 'list eudc-duplicate-attribute-handling-method)) - (mapcar + (mapc (function (lambda (record) (setq final-result (append (eudc-filter-duplicate-attributes record) |