]> code.delx.au - gnu-emacs/commitdiff
(Fcar, Fcdr): Doc fixes.
authorLuc Teirlinck <teirllm@auburn.edu>
Sun, 29 Jan 2006 02:19:33 +0000 (02:19 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Sun, 29 Jan 2006 02:19:33 +0000 (02:19 +0000)
src/data.c

index dade1a0b1b72a00c04a662c9cf470caaa1c5e2b3..12062c530971f2a3ddc257bf747cd60c0df574bb 100644 (file)
@@ -523,8 +523,8 @@ 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'.
 
-See Info node `(elisp)Cons Cells' for a discussion of basic Lisp
-concepts such as car, cdr, cons cell and list.  */)
+See Info node `(elisp)Cons Cells' for a discussion of related basic
+Lisp concepts such as car, cdr, cons cell and list.  */)
      (list)
      register Lisp_Object list;
 {
@@ -554,8 +554,8 @@ 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'.
 
-See Info node `(elisp)Cons Cells' for a discussion of basic Lisp
-concepts such as cdr, car, cons cell and list.  */)
+See Info node `(elisp)Cons Cells' for a discussion of related basic
+Lisp concepts such as cdr, car, cons cell and list.  */)
      (list)
      register Lisp_Object list;
 {