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
e1960a18
Commit
e1960a18
authored
Apr 06, 1995
by
Simon Marshall
Browse files
Doc fixes to match declared args.
parent
7af04c89
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/data.c
src/data.c
+4
-4
No files found.
src/data.c
View file @
e1960a18
...
...
@@ -445,7 +445,7 @@ DEFUN ("floatp", Ffloatp, Sfloatp, 1, 1, 0,
/* Extract and set components of lists */
DEFUN
(
"car"
,
Fcar
,
Scar
,
1
,
1
,
0
,
"Return the car of
CONSCELL
. If arg is nil, return nil.
\n
\
"Return the car of
LIST
. If arg is nil, return nil.
\n
\
Error if arg is not nil and not a cons cell. See also `car-safe'."
)
(
list
)
register
Lisp_Object
list
;
...
...
@@ -473,7 +473,7 @@ DEFUN ("car-safe", Fcar_safe, Scar_safe, 1, 1, 0,
}
DEFUN
(
"cdr"
,
Fcdr
,
Scdr
,
1
,
1
,
0
,
"Return the cdr of
CONSCELL
. If arg is nil, return nil.
\n
\
"Return the cdr of
LIST
. If arg is nil, return nil.
\n
\
Error if arg is not nil and not a cons cell. See also `cdr-safe'."
)
(
list
)
...
...
@@ -502,7 +502,7 @@ DEFUN ("cdr-safe", Fcdr_safe, Scdr_safe, 1, 1, 0,
}
DEFUN
(
"setcar"
,
Fsetcar
,
Ssetcar
,
2
,
2
,
0
,
"Set the car of
CONS
CELL to be NEWCAR. Returns NEWCAR."
)
"Set the car of CELL to be NEWCAR. Returns NEWCAR."
)
(
cell
,
newcar
)
register
Lisp_Object
cell
,
newcar
;
{
...
...
@@ -515,7 +515,7 @@ DEFUN ("setcar", Fsetcar, Ssetcar, 2, 2, 0,
}
DEFUN
(
"setcdr"
,
Fsetcdr
,
Ssetcdr
,
2
,
2
,
0
,
"Set the cdr of
CONS
CELL to be NEWCDR. Returns NEWCDR."
)
"Set the cdr of CELL to be NEWCDR. Returns NEWCDR."
)
(
cell
,
newcdr
)
register
Lisp_Object
cell
,
newcdr
;
{
...
...
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