]> git.eshelyaron.com Git - emacs.git/commitdiff
Refer to cl-lib rather than cl in lispref
authorGlenn Morris <rgm@gnu.org>
Mon, 22 Oct 2012 02:22:27 +0000 (19:22 -0700)
committerGlenn Morris <rgm@gnu.org>
Mon, 22 Oct 2012 02:22:27 +0000 (19:22 -0700)
* intro.texi (Lisp History):
* lists.texi (Sets And Lists): Refer to cl-lib rather than cl.

doc/lispref/ChangeLog
doc/lispref/intro.texi
doc/lispref/lists.texi

index b99eca41644df150f24fe523d394342164ac0635..4f8c8fdafc23061f195ba93fb8b60f443b912ca2 100644 (file)
@@ -1,5 +1,7 @@
 2012-10-22  Glenn Morris  <rgm@gnu.org>
 
+       * intro.texi (Lisp History):
+       * lists.texi (Sets And Lists): Refer to cl-lib rather than cl.
        * tips.texi (Coding Conventions): Recommend cl-lib over cl.
 
 2012-10-15  Chong Yidong  <cyd@gnu.org>
index ce103a84a742bb96fbd7491d3b1cce3b0f857ce1..e61e13662db4987c90aaa2574dae61ed0f4bac1c 100644 (file)
@@ -119,7 +119,7 @@ worry about it; this manual is self-contained.
 
 @pindex cl
   A certain amount of Common Lisp emulation is available via the
-@file{cl} library.  @xref{Top,, Overview, cl, Common Lisp Extensions}.
+@file{cl-lib} library.  @xref{Top,, Overview, cl, Common Lisp Extensions}.
 
   Emacs Lisp is not at all influenced by Scheme; but the GNU project has
 an implementation of Scheme, called Guile.  We use it in all new GNU
index d685ce0aa74eccd79091f8fdac13bd5ca09b0bba..4a8740a573440c11ff579a110a3ed32ccb336e84 100644 (file)
@@ -1266,7 +1266,7 @@ functions for sets include @code{memq} and @code{delq}, and their
 @quotation
 @b{Common Lisp note:} Common Lisp has functions @code{union} (which
 avoids duplicate elements) and @code{intersection} for set operations.
-Although standard GNU Emacs Lisp does not have them, the @file{cl}
+Although standard GNU Emacs Lisp does not have them, the @file{cl-lib}
 library provides versions.  @xref{Top,, Overview, cl, Common Lisp Extensions}.
 @end quotation