aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorLuc Teirlinck <[email protected]>2006-01-28 23:16:35 +0000
committerLuc Teirlinck <[email protected]>2006-01-28 23:16:35 +0000
commit9701c742ad8556cf02e37d879926b77627187e0f (patch)
tree90e5f48cf182682cd2325c6aaa626513fc5ba7bf /src/data.c
parent6badf38c8a94976dfbc52c71e5e79853330983a3 (diff)
(Fcar, Fcdr): Add links to Elisp manual to the docstrings.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index 75fa3a8908..dade1a0b1b 100644
--- a/src/data.c
+++ b/src/data.c
@@ -521,7 +521,10 @@ DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0,
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'. */)
+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. */)
(list)
register Lisp_Object list;
{
@@ -549,7 +552,10 @@ 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'. */)
+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. */)
(list)
register Lisp_Object list;
{