From: Glenn Morris Date: Wed, 6 Feb 2013 04:36:44 +0000 (-0800) Subject: * doc/misc/cl.texi (Equality Predicates): Mention memql. X-Git-Tag: emacs-24.2.93~7 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1e934b84840369c0ad282eefcfb7882d4c39b96b;p=emacs.git * doc/misc/cl.texi (Equality Predicates): Mention memql. --- 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 + + * cl.texi (Equality Predicates): Mention memql. + 2013-02-03 Eric Ludlam * 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