summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2013-02-05 20:36:44 -0800
committerGlenn Morris <rgm@gnu.org>2013-02-05 20:36:44 -0800
commit1e934b84840369c0ad282eefcfb7882d4c39b96b (patch)
tree1e70dc1f20e1635d5ae7b222b8c9e64770cfeeb8
parentb8f74366162596d45d12eec7ac01d251d274b887 (diff)
downloademacs-1e934b84840369c0ad282eefcfb7882d4c39b96b.tar.gz
* doc/misc/cl.texi (Equality Predicates): Mention memql.
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/cl.texi3
2 files changed, 5 insertions, 2 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 5baf24069da..49ef90d3da1 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
+2013-02-06 Glenn Morris <rgm@gnu.org>
+
+ * cl.texi (Equality Predicates): Mention memql.
+
2013-02-03 Eric Ludlam <zappo@gnu.org>
* doc/misc/ede.texi (Creating a project): Make ede-new doc less
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi
index eb37829e9fa..cb04f65cf0d 100644
--- a/doc/misc/cl.texi
+++ b/doc/misc/cl.texi
@@ -819,8 +819,7 @@ use @code{eql} to compare elements, whereas Emacs Lisp follows the
MacLisp tradition and uses @code{equal} for these two functions.
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}.
+@code{assq} use @code{eq}, and the standard @code{memql} uses @code{eql}.
@node Control Structure
@chapter Control Structure