comparison src/data.c @ 68446:8ad0f8c7115f

(Fcar, Fcdr): Doc fixes.
author Luc Teirlinck <teirllm@auburn.edu>
date Sun, 29 Jan 2006 02:19:33 +0000
parents 3eb2a97faeda
children a224550f3e25 9b150bc96d33
comparison
equal deleted inserted replaced
68445:418c65a96a06 68446:8ad0f8c7115f
521 521
522 DEFUN ("car", Fcar, Scar, 1, 1, 0, 522 DEFUN ("car", Fcar, Scar, 1, 1, 0,
523 doc: /* Return the car of LIST. If arg is nil, return nil. 523 doc: /* Return the car of LIST. If arg is nil, return nil.
524 Error if arg is not nil and not a cons cell. See also `car-safe'. 524 Error if arg is not nil and not a cons cell. See also `car-safe'.
525 525
526 See Info node `(elisp)Cons Cells' for a discussion of basic Lisp 526 See Info node `(elisp)Cons Cells' for a discussion of related basic
527 concepts such as car, cdr, cons cell and list. */) 527 Lisp concepts such as car, cdr, cons cell and list. */)
528 (list) 528 (list)
529 register Lisp_Object list; 529 register Lisp_Object list;
530 { 530 {
531 while (1) 531 while (1)
532 { 532 {
552 552
553 DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, 553 DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
554 doc: /* Return the cdr of LIST. If arg is nil, return nil. 554 doc: /* Return the cdr of LIST. If arg is nil, return nil.
555 Error if arg is not nil and not a cons cell. See also `cdr-safe'. 555 Error if arg is not nil and not a cons cell. See also `cdr-safe'.
556 556
557 See Info node `(elisp)Cons Cells' for a discussion of basic Lisp 557 See Info node `(elisp)Cons Cells' for a discussion of related basic
558 concepts such as cdr, car, cons cell and list. */) 558 Lisp concepts such as cdr, car, cons cell and list. */)
559 (list) 559 (list)
560 register Lisp_Object list; 560 register Lisp_Object list;
561 { 561 {
562 while (1) 562 while (1)
563 { 563 {