aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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;