aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorGlenn Morris2013-02-05 20:36:44 -0800
committerGlenn Morris2013-02-05 20:36:44 -0800
commit1e934b84840369c0ad282eefcfb7882d4c39b96b (patch)
tree1e70dc1f20e1635d5ae7b222b8c9e64770cfeeb8 /doc/misc
parentb8f74366162596d45d12eec7ac01d251d274b887 (diff)
downloademacs-1e934b84840369c0ad282eefcfb7882d4c39b96b.tar.gz
emacs-1e934b84840369c0ad282eefcfb7882d4c39b96b.zip
* doc/misc/cl.texi (Equality Predicates): Mention memql.
Diffstat (limited to 'doc/misc')
-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 @@
12013-02-06 Glenn Morris <rgm@gnu.org>
2
3 * cl.texi (Equality Predicates): Mention memql.
4
12013-02-03 Eric Ludlam <zappo@gnu.org> 52013-02-03 Eric Ludlam <zappo@gnu.org>
2 6
3 * doc/misc/ede.texi (Creating a project): Make ede-new doc less 7 * 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
819MacLisp tradition and uses @code{equal} for these two functions. 819MacLisp tradition and uses @code{equal} for these two functions.
820The functions @code{cl-member} and @code{cl-assoc} use @code{eql}, 820The functions @code{cl-member} and @code{cl-assoc} use @code{eql},
821as in Common Lisp. The standard Emacs Lisp functions @code{memq} and 821as in Common Lisp. The standard Emacs Lisp functions @code{memq} and
822@code{assq} use @code{eq}, so you can use these if you do not care 822@code{assq} use @code{eq}, and the standard @code{memql} uses @code{eql}.
823about the difference between @code{eq} and @code{eql}.
824 823
825@node Control Structure 824@node Control Structure
826@chapter Control Structure 825@chapter Control Structure