changeset 68446:8ad0f8c7115f

(Fcar, Fcdr): Doc fixes.
author Luc Teirlinck <teirllm@auburn.edu>
date Sun, 29 Jan 2006 02:19:33 +0000
parents 418c65a96a06
children 0d6e07750ed8
files src/data.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/data.c	Sat Jan 28 23:21:34 2006 +0000
+++ b/src/data.c	Sun Jan 29 02:19:33 2006 +0000
@@ -523,8 +523,8 @@
        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 @@
        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;
 {