diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-10-16 01:05:10 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-10-16 01:05:10 +0000 |
commit | b5ef0e9225a05268e98b1304cf37259dc79aa9c2 (patch) | |
tree | 9f26263a54de7d1e54c7104b324ba0389536ed32 /lispref/lists.texi | |
parent | 9feb90da262d7663e0ec8465c545018304b258ba (diff) | |
download | emacs-b5ef0e9225a05268e98b1304cf37259dc79aa9c2.tar.gz |
Minor fixes.
Diffstat (limited to 'lispref/lists.texi')
-rw-r--r-- | lispref/lists.texi | 4 |
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 |