diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-06-09 23:27:58 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-06-09 23:27:58 +0000 |
commit | c14ec13543ea0bef97466957bc17e071a16b7419 (patch) | |
tree | 6e763f04c4157ea93f384ec326cb52b36dd8cb21 /src/fns.c | |
parent | 6c649b5f4fdb87747f6c870b37c2dda83e75f892 (diff) | |
download | emacs-c14ec13543ea0bef97466957bc17e071a16b7419.tar.gz |
(Fmemq, Fmaphash): Doc fixes.
Diffstat (limited to 'src/fns.c')
-rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c index e910c87375b..a36789b4a92 100644 --- a/src/fns.c +++ b/src/fns.c @@ -1471,7 +1471,7 @@ The value is actually the tail of LIST whose car is ELT. */) 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 ("remhash", Fremhash, Sremhash, 2, 2, 0, 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; { |