diff options
| author | Glenn Morris | 2012-10-21 19:22:27 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-10-21 19:22:27 -0700 |
| commit | 4ee8774065666426cda990f91fdec8fe343bdf30 (patch) | |
| tree | e09241589a8c0291ec1da288c921a8e6a21a6b71 | |
| parent | 5fb904b0e48f82da36b4d54b467450a0b39afa27 (diff) | |
| download | emacs-4ee8774065666426cda990f91fdec8fe343bdf30.tar.gz emacs-4ee8774065666426cda990f91fdec8fe343bdf30.zip | |
Refer to cl-lib rather than cl in lispref
* intro.texi (Lisp History):
* lists.texi (Sets And Lists): Refer to cl-lib rather than cl.
| -rw-r--r-- | doc/lispref/ChangeLog | 2 | ||||
| -rw-r--r-- | doc/lispref/intro.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/lists.texi | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index b99eca41644..4f8c8fdafc2 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2012-10-22 Glenn Morris <rgm@gnu.org> | 1 | 2012-10-22 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * intro.texi (Lisp History): | ||
| 4 | * lists.texi (Sets And Lists): Refer to cl-lib rather than cl. | ||
| 3 | * tips.texi (Coding Conventions): Recommend cl-lib over cl. | 5 | * tips.texi (Coding Conventions): Recommend cl-lib over cl. |
| 4 | 6 | ||
| 5 | 2012-10-15 Chong Yidong <cyd@gnu.org> | 7 | 2012-10-15 Chong Yidong <cyd@gnu.org> |
diff --git a/doc/lispref/intro.texi b/doc/lispref/intro.texi index ce103a84a74..e61e13662db 100644 --- a/doc/lispref/intro.texi +++ b/doc/lispref/intro.texi | |||
| @@ -119,7 +119,7 @@ worry about it; this manual is self-contained. | |||
| 119 | 119 | ||
| 120 | @pindex cl | 120 | @pindex cl |
| 121 | A certain amount of Common Lisp emulation is available via the | 121 | A certain amount of Common Lisp emulation is available via the |
| 122 | @file{cl} library. @xref{Top,, Overview, cl, Common Lisp Extensions}. | 122 | @file{cl-lib} library. @xref{Top,, Overview, cl, Common Lisp Extensions}. |
| 123 | 123 | ||
| 124 | Emacs Lisp is not at all influenced by Scheme; but the GNU project has | 124 | Emacs Lisp is not at all influenced by Scheme; but the GNU project has |
| 125 | an implementation of Scheme, called Guile. We use it in all new GNU | 125 | an implementation of Scheme, called Guile. We use it in all new GNU |
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi index d685ce0aa74..4a8740a5734 100644 --- a/doc/lispref/lists.texi +++ b/doc/lispref/lists.texi | |||
| @@ -1266,7 +1266,7 @@ functions for sets include @code{memq} and @code{delq}, and their | |||
| 1266 | @quotation | 1266 | @quotation |
| 1267 | @b{Common Lisp note:} Common Lisp has functions @code{union} (which | 1267 | @b{Common Lisp note:} Common Lisp has functions @code{union} (which |
| 1268 | avoids duplicate elements) and @code{intersection} for set operations. | 1268 | avoids duplicate elements) and @code{intersection} for set operations. |
| 1269 | Although standard GNU Emacs Lisp does not have them, the @file{cl} | 1269 | Although standard GNU Emacs Lisp does not have them, the @file{cl-lib} |
| 1270 | library provides versions. @xref{Top,, Overview, cl, Common Lisp Extensions}. | 1270 | library provides versions. @xref{Top,, Overview, cl, Common Lisp Extensions}. |
| 1271 | @end quotation | 1271 | @end quotation |
| 1272 | 1272 | ||