summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/cl-seq.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-05-17 00:28:50 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-05-17 00:28:50 +0000
commit213233f0062616332e7aa79aa6408f9b7f59ba54 (patch)
tree03e49f832f9e9d76edc5708a17aa88209817a43f /lisp/emacs-lisp/cl-seq.el
parent4342e957a2521bbe9b574871e3bbd60d63c93461 (diff)
downloademacs-213233f0062616332e7aa79aa6408f9b7f59ba54.tar.gz
emacs-213233f0062616332e7aa79aa6408f9b7f59ba54.tar.bz2
emacs-213233f0062616332e7aa79aa6408f9b7f59ba54.zip
(subsetp, tree-equal): Doc fixes.
Diffstat (limited to 'lisp/emacs-lisp/cl-seq.el')
-rw-r--r--lisp/emacs-lisp/cl-seq.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-seq.el b/lisp/emacs-lisp/cl-seq.el
index 93237f0206f..cb202700a00 100644
--- a/lisp/emacs-lisp/cl-seq.el
+++ b/lisp/emacs-lisp/cl-seq.el
@@ -800,7 +800,7 @@ Keywords supported: :test :test-not :key"
(apply 'nset-difference cl-list2 cl-list1 cl-keys)))))
(defun subsetp (cl-list1 cl-list2 &rest cl-keys)
- "True if LIST1 is a subset of LIST2.
+ "Return true if LIST1 is a subset of LIST2.
I.e., if every element of LIST1 also appears in LIST2.
Keywords supported: :test :test-not :key"
(cond ((null cl-list1) t) ((null cl-list2) nil)
@@ -888,7 +888,7 @@ Keywords supported: :test :test-not :key"
(setq cl-tree (cdr cl-tree))))))
(defun tree-equal (cl-x cl-y &rest cl-keys)
- "T if trees X and Y have `eql' leaves.
+ "Return t if trees X and Y have `eql' leaves.
Atoms are compared by `eql'; cons cells are compared recursively.
Keywords supported: :test :test-not :key"
(cl-parsing-keywords (:test :test-not :key) ()