summaryrefslogtreecommitdiff
path: root/lispref/lists.texi
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-10-16 01:05:10 +0000
committerRichard M. Stallman <rms@gnu.org>1995-10-16 01:05:10 +0000
commitb5ef0e9225a05268e98b1304cf37259dc79aa9c2 (patch)
tree9f26263a54de7d1e54c7104b324ba0389536ed32 /lispref/lists.texi
parent9feb90da262d7663e0ec8465c545018304b258ba (diff)
downloademacs-b5ef0e9225a05268e98b1304cf37259dc79aa9c2.tar.gz
Minor fixes.
Diffstat (limited to 'lispref/lists.texi')
-rw-r--r--lispref/lists.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi
index e1b2bcbb2fd..da9d57319ed 100644
--- a/lispref/lists.texi
+++ b/lispref/lists.texi
@@ -1030,7 +1030,7 @@ long as you don't mind having duplicate elements). Other useful
functions for sets include @code{memq} and @code{delq}, and their
@code{equal} versions, @code{member} and @code{delete}.
-@cindex CL note---lack @code{union}, @code{set}
+@cindex CL note---lack @code{union}, @code{intersection}
@quotation
@b{Common Lisp note:} Common Lisp has functions @code{union} (which
avoids duplicate elements) and @code{intersection} for set operations,
@@ -1163,7 +1163,7 @@ it removes the element just as @code{delq} would. For example:
@example
@group
(delete '(2) '((2) (1) (2)))
- @result{} '((1))
+ @result{} ((1))
@end group
@end example
@end defun