Mercurial > emacs
changeset 63173:66bf26afd9c6
(Fmemq, Fmaphash): Doc fixes.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 09 Jun 2005 23:27:16 +0000 |
parents | 14e29b4d395f |
children | 20e5b9278cf3 |
files | src/fns.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fns.c Thu Jun 09 21:16:40 2005 +0000 +++ b/src/fns.c Thu Jun 09 23:27:16 2005 +0000 @@ -1471,7 +1471,7 @@ DEFUN ("memq", Fmemq, Smemq, 2, 2, 0, doc: /* Return non-nil if ELT is an element of LIST. -Comparison done with EQ. The value is actually the tail of LIST +Comparison done with `eq'. The value is actually the tail of LIST whose car is ELT. */) (elt, list) Lisp_Object elt, list; @@ -5486,7 +5486,7 @@ DEFUN ("maphash", Fmaphash, Smaphash, 2, 2, 0, doc: /* Call FUNCTION for all entries in hash table TABLE. -FUNCTION is called with 2 arguments KEY and VALUE. */) +FUNCTION is called with two arguments, KEY and VALUE. */) (function, table) Lisp_Object function, table; {