]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/misc/cl.texi (Equality Predicates): Fix eq/eql pedantry.
authorGlenn Morris <rgm@gnu.org>
Sun, 3 Feb 2013 19:40:00 +0000 (11:40 -0800)
committerGlenn Morris <rgm@gnu.org>
Sun, 3 Feb 2013 19:40:00 +0000 (11:40 -0800)
doc/misc/ChangeLog
doc/misc/cl.texi

index e3ee947fe24b6b9e7338262dd79bd469cc03662a..1fc58f9fa4c1447e3ea3f28b175f8798f01813e8 100644 (file)
@@ -1,3 +1,7 @@
+2013-02-03  Glenn Morris  <rgm@gnu.org>
+
+       * cl.texi (Equality Predicates): Fix eq/eql pedantry.
+
 2013-01-13  Bastien Guerry  <bzg@gnu.org>
 
        * org.texi (Installation): Simplify.
index ae96f2c5cb810a1668f70dfd6b60d994dde34c93..eb37829e9faed7eef1fff9c0836a05b8f0791190 100644 (file)
@@ -817,8 +817,10 @@ not compare strings against vectors of integers.
 Also note that the Common Lisp functions @code{member} and @code{assoc}
 use @code{eql} to compare elements, whereas Emacs Lisp follows the
 MacLisp tradition and uses @code{equal} for these two functions.
-In Emacs, use @code{memq} (or @code{cl-member}) and @code{assq} (or
-@code{cl-assoc}) to get functions which use @code{eql} for comparisons.
+The functions @code{cl-member} and @code{cl-assoc} use @code{eql},
+as in Common Lisp.  The standard Emacs Lisp functions @code{memq} and
+@code{assq} use @code{eq}, so you can use these if you do not care
+about the difference between @code{eq} and @code{eql}.
 
 @node Control Structure
 @chapter Control Structure