aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-05-18 23:59:50 -0700
committerGlenn Morris2011-05-18 23:59:50 -0700
commitbc8410afd812558f8ff62041ff83e1b899174294 (patch)
tree9b44663c0f6243df2a68c2514c4b13084e3b964c
parent35a30759f31addb80faef630001de380cd94a0cf (diff)
downloademacs-bc8410afd812558f8ff62041ff83e1b899174294.tar.gz
emacs-bc8410afd812558f8ff62041ff83e1b899174294.zip
* doc/lispref/lists.texi (Sets And Lists): Mention cl provides union etc.
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/lists.texi6
2 files changed, 7 insertions, 3 deletions
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 @@
12011-05-19 Glenn Morris <rgm@gnu.org>
2
3 * lists.texi (Sets And Lists): Mention cl provides union etc.
4
12011-05-19 Nix <nix@esperi.org.uk> 52011-05-19 Nix <nix@esperi.org.uk>
2 6
3 * windows.texi (Displaying Buffers): pop-to-buffer is not a command. 7 * 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
1266@cindex CL note---lack @code{union}, @code{intersection} 1266@cindex CL note---lack @code{union}, @code{intersection}
1267@quotation 1267@quotation
1268@b{Common Lisp note:} Common Lisp has functions @code{union} (which 1268@b{Common Lisp note:} Common Lisp has functions @code{union} (which
1269avoids duplicate elements) and @code{intersection} for set operations, 1269avoids duplicate elements) and @code{intersection} for set operations.
1270but GNU Emacs Lisp does not have them. You can write them in Lisp if 1270Although standard GNU Emacs Lisp does not have them, the @file{cl}
1271you wish. 1271library provides versions. @inforef{Top, Overview, cl}.
1272@end quotation 1272@end quotation
1273 1273
1274@defun memq object list 1274@defun memq object list