From: Glenn Morris Date: Thu, 19 May 2011 06:59:50 +0000 (-0700) Subject: * doc/lispref/lists.texi (Sets And Lists): Mention cl provides union etc. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~237^2~7 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bc8410afd812558f8ff62041ff83e1b899174294;p=emacs.git * doc/lispref/lists.texi (Sets And Lists): Mention cl provides union etc. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 198eb1c8ed2..7d1ce7bff80 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,7 @@ +2011-05-19 Glenn Morris + + * lists.texi (Sets And Lists): Mention cl provides union etc. + 2011-05-19 Nix * windows.texi (Displaying Buffers): pop-to-buffer is not a command. diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi index fa3fac814c1..40a974cf407 100644 --- a/doc/lispref/lists.texi +++ b/doc/lispref/lists.texi @@ -1266,9 +1266,9 @@ functions for sets include @code{memq} and @code{delq}, and their @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, -but GNU Emacs Lisp does not have them. You can write them in Lisp if -you wish. +avoids duplicate elements) and @code{intersection} for set operations. +Although standard GNU Emacs Lisp does not have them, the @file{cl} +library provides versions. @inforef{Top, Overview, cl}. @end quotation @defun memq object list