aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLuc Teirlinck2006-01-28 23:16:35 +0000
committerLuc Teirlinck2006-01-28 23:16:35 +0000
commit9701c742ad8556cf02e37d879926b77627187e0f (patch)
tree90e5f48cf182682cd2325c6aaa626513fc5ba7bf /src
parent6badf38c8a94976dfbc52c71e5e79853330983a3 (diff)
downloademacs-9701c742ad8556cf02e37d879926b77627187e0f.tar.gz
emacs-9701c742ad8556cf02e37d879926b77627187e0f.zip
(Fcar, Fcdr): Add links to Elisp manual to the docstrings.
Diffstat (limited to 'src')
-rw-r--r--src/data.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index 75fa3a89086..dade1a0b1b7 100644
--- a/src/data.c
+++ b/src/data.c
@@ -521,7 +521,10 @@ DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0,
521 521
522DEFUN ("car", Fcar, Scar, 1, 1, 0, 522DEFUN ("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.
524Error if arg is not nil and not a cons cell. See also `car-safe'. */) 524Error if arg is not nil and not a cons cell. See also `car-safe'.
525
526See Info node `(elisp)Cons Cells' for a discussion of basic Lisp
527concepts such as car, cdr, cons cell and list. */)
525 (list) 528 (list)
526 register Lisp_Object list; 529 register Lisp_Object list;
527{ 530{
@@ -549,7 +552,10 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0,
549 552
550DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0, 553DEFUN ("cdr", Fcdr, Scdr, 1, 1, 0,
551 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.
552Error if arg is not nil and not a cons cell. See also `cdr-safe'. */) 555Error if arg is not nil and not a cons cell. See also `cdr-safe'.
556
557See Info node `(elisp)Cons Cells' for a discussion of basic Lisp
558concepts such as cdr, car, cons cell and list. */)
553 (list) 559 (list)
554 register Lisp_Object list; 560 register Lisp_Object list;
555{ 561{