Mercurial > emacs
changeset 5661:066830a71a63
(Fassq, Fassoc): Doc fixes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 22 Jan 1994 16:14:37 +0000 |
parents | 0951c61a12f8 |
children | 32d7d340bec8 |
files | src/fns.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fns.c Sat Jan 22 16:13:30 1994 +0000 +++ b/src/fns.c Sat Jan 22 16:14:37 1994 +0000 @@ -504,8 +504,8 @@ } DEFUN ("assq", Fassq, Sassq, 2, 2, 0, - "Return non-nil if ELT is `eq' to the car of an element of LIST.\n\ -The value is actually the element of LIST whose car is ELT.\n\ + "Return non-nil if KEY is `eq' to the car of an element of LIST.\n\ +The value is actually the element of LIST whose car is KEY.\n\ Elements of LIST that are not conses are ignored.") (key, list) register Lisp_Object key; @@ -545,8 +545,8 @@ } DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0, - "Return non-nil if ELT is `equal' to the car of an element of LIST.\n\ -The value is actually the element of LIST whose car is ELT.") + "Return non-nil if KEY is `equal' to the car of an element of LIST.\n\ +The value is actually the element of LIST whose car is KEY.") (key, list) register Lisp_Object key; Lisp_Object list;