]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/data.c (Fcar, Fcdr): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Wed, 14 Jul 2021 15:54:11 +0000 (18:54 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 14 Jul 2021 15:54:11 +0000 (18:54 +0300)
src/data.c

index 2706a2474e6705d68f4b55f61e4ab35e7cf9a01b..1c36dff51dbefceecd7b37613f3cb9e0eb83b308 100644 (file)
@@ -591,8 +591,8 @@ DEFUN ("condition-variable-p", Fcondition_variable_p, Scondition_variable_p,
 /* Extract and set components of lists.  */
 
 DEFUN ("car", Fcar, Scar, 1, 1, 0,
-       doc: /* Return the car of LIST.  If arg is nil, return nil.
-Error if arg is not nil and not a cons cell.  See also `car-safe'.
+       doc: /* Return the car of LIST.  If LIST is nil, return nil.
+Error if LIST is not nil and not a cons cell.  See also `car-safe'.
 
 See Info node `(elisp)Cons Cells' for a discussion of related basic
 Lisp concepts such as car, cdr, cons cell and list.  */)
@@ -609,8 +609,8 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0,
 }
 
 DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
-       doc: /* Return the cdr of LIST.  If arg is nil, return nil.
-Error if arg is not nil and not a cons cell.  See also `cdr-safe'.
+       doc: /* Return the cdr of LIST.  If LIST is nil, return nil.
+Error if LIST is not nil and not a cons cell.  See also `cdr-safe'.
 
 See Info node `(elisp)Cons Cells' for a discussion of related basic
 Lisp concepts such as cdr, car, cons cell and list.  */)