diff options
| author | Glenn Morris | 2011-05-18 23:59:50 -0700 |
|---|---|---|
| committer | Glenn Morris | 2011-05-18 23:59:50 -0700 |
| commit | bc8410afd812558f8ff62041ff83e1b899174294 (patch) | |
| tree | 9b44663c0f6243df2a68c2514c4b13084e3b964c | |
| parent | 35a30759f31addb80faef630001de380cd94a0cf (diff) | |
| download | emacs-bc8410afd812558f8ff62041ff83e1b899174294.tar.gz emacs-bc8410afd812558f8ff62041ff83e1b899174294.zip | |
* doc/lispref/lists.texi (Sets And Lists): Mention cl provides union etc.
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/lists.texi | 6 |
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 @@ | |||
| 1 | 2011-05-19 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * lists.texi (Sets And Lists): Mention cl provides union etc. | ||
| 4 | |||
| 1 | 2011-05-19 Nix <nix@esperi.org.uk> | 5 | 2011-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 |
| 1269 | avoids duplicate elements) and @code{intersection} for set operations, | 1269 | avoids duplicate elements) and @code{intersection} for set operations. |
| 1270 | but GNU Emacs Lisp does not have them. You can write them in Lisp if | 1270 | Although standard GNU Emacs Lisp does not have them, the @file{cl} |
| 1271 | you wish. | 1271 | library provides versions. @inforef{Top, Overview, cl}. |
| 1272 | @end quotation | 1272 | @end quotation |
| 1273 | 1273 | ||
| 1274 | @defun memq object list | 1274 | @defun memq object list |