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
commitb75689dd3dec3f8959afc899215dc237516825b5 (patch)
treed09e73bf40d23127f4215d370086e8c162bd3b08 /lispref/lists.texi
parent3b010280a2bac6fa90db185f0ee4572a4203a544 (diff)
downloademacs-b75689dd3dec3f8959afc899215dc237516825b5.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