diff options
| author | Glenn Morris | 2013-02-05 20:36:44 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-02-05 20:36:44 -0800 |
| commit | 1e934b84840369c0ad282eefcfb7882d4c39b96b (patch) | |
| tree | 1e70dc1f20e1635d5ae7b222b8c9e64770cfeeb8 /doc/misc | |
| parent | b8f74366162596d45d12eec7ac01d251d274b887 (diff) | |
| download | emacs-1e934b84840369c0ad282eefcfb7882d4c39b96b.tar.gz emacs-1e934b84840369c0ad282eefcfb7882d4c39b96b.zip | |
* doc/misc/cl.texi (Equality Predicates): Mention memql.
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/cl.texi | 3 |
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 @@ | |||
| 1 | 2013-02-06 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * cl.texi (Equality Predicates): Mention memql. | ||
| 4 | |||
| 1 | 2013-02-03 Eric Ludlam <zappo@gnu.org> | 5 | 2013-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 | |||
| 819 | MacLisp tradition and uses @code{equal} for these two functions. | 819 | MacLisp tradition and uses @code{equal} for these two functions. |
| 820 | The functions @code{cl-member} and @code{cl-assoc} use @code{eql}, | 820 | The functions @code{cl-member} and @code{cl-assoc} use @code{eql}, |
| 821 | as in Common Lisp. The standard Emacs Lisp functions @code{memq} and | 821 | as 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}. |
| 823 | about 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 |