aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-22 16:14:37 +0000
committerRichard M. Stallman1994-01-22 16:14:37 +0000
commit3797b4c3fcbc84403c0110bc063effaab53b23eb (patch)
tree482421b58a8d8c69076607ed34204eb6cd72c93c /src
parent73d4035593591f1ddce7d2f11c03924c6cd332f2 (diff)
downloademacs-3797b4c3fcbc84403c0110bc063effaab53b23eb.tar.gz
emacs-3797b4c3fcbc84403c0110bc063effaab53b23eb.zip
(Fassq, Fassoc): Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fns.c b/src/fns.c
index 3a0f3c80561..1d44afadcd3 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -504,8 +504,8 @@ The value is actually the tail of LIST whose car is ELT.")
504} 504}
505 505
506DEFUN ("assq", Fassq, Sassq, 2, 2, 0, 506DEFUN ("assq", Fassq, Sassq, 2, 2, 0,
507 "Return non-nil if ELT is `eq' to the car of an element of LIST.\n\ 507 "Return non-nil if KEY is `eq' to the car of an element of LIST.\n\
508The value is actually the element of LIST whose car is ELT.\n\ 508The value is actually the element of LIST whose car is KEY.\n\
509Elements of LIST that are not conses are ignored.") 509Elements of LIST that are not conses are ignored.")
510 (key, list) 510 (key, list)
511 register Lisp_Object key; 511 register Lisp_Object key;
@@ -545,8 +545,8 @@ assq_no_quit (key, list)
545} 545}
546 546
547DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0, 547DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0,
548 "Return non-nil if ELT is `equal' to the car of an element of LIST.\n\ 548 "Return non-nil if KEY is `equal' to the car of an element of LIST.\n\
549The value is actually the element of LIST whose car is ELT.") 549The value is actually the element of LIST whose car is KEY.")
550 (key, list) 550 (key, list)
551 register Lisp_Object key; 551 register Lisp_Object key;
552 Lisp_Object list; 552 Lisp_Object list;