* doc/misc/cl.texi (Equality Predicates): Mention memql.

This commit is contained in:
Glenn Morris 2013-02-05 20:36:44 -08:00
parent b8f7436616
commit 1e934b8484
2 changed files with 5 additions and 2 deletions

View file

@ -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

View file

@ -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