]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fassq, Fassoc): Doc fixes.
authorRichard M. Stallman <rms@gnu.org>
Sat, 22 Jan 1994 16:14:37 +0000 (16:14 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 22 Jan 1994 16:14:37 +0000 (16:14 +0000)
src/fns.c

index 3a0f3c80561795232dac4cd4810c1f875a7d3928..1d44afadcd3b7bfc28747f645463898f073eb41d 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -504,8 +504,8 @@ The value is actually the tail of LIST whose car is ELT.")
 }
 
 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 @@ assq_no_quit (key, list)
 }
 
 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;