summaryrefslogtreecommitdiff
path: root/lisp/cl.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-05-27 04:45:55 +0000
committerRichard M. Stallman <rms@gnu.org>1993-05-27 04:45:55 +0000
commit4455c148a4d5f7806d64fdc979a92b0ba25f9337 (patch)
tree12713ac68fbdc65c86c4281ef16503f671e5b21f /lisp/cl.el
parentc636405b43af10750f4b8fffdbd240f7282513cb (diff)
downloademacs-4455c148a4d5f7806d64fdc979a92b0ba25f9337.tar.gz
(cl-member): Renamed from member.
Diffstat (limited to 'lisp/cl.el')
-rw-r--r--lisp/cl.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cl.el b/lisp/cl.el
index 2d2179b78bc..0e648633a52 100644
--- a/lisp/cl.el
+++ b/lisp/cl.el
@@ -1417,7 +1417,7 @@ returned."
;;;; Both list and sequence functions are considered here together. This
;;;; doesn't fit any more with the original split of functions in files.
-(defun member (item list &rest kargs)
+(defun cl-member (item list &rest kargs)
"Look for ITEM in LIST; return first tail of LIST the car of whose first
cons cell tests the same as ITEM. Admits arguments :key, :test, and
:test-not."