Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9701c742
Commit
9701c742
authored
Jan 28, 2006
by
Luc Teirlinck
Browse files
(Fcar, Fcdr): Add links to Elisp manual to the docstrings.
parent
6badf38c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
src/data.c
src/data.c
+8
-2
No files found.
src/data.c
View file @
9701c742
...
...
@@ -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
;
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment