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
da46c5be
Commit
da46c5be
authored
Jan 29, 2006
by
Luc Teirlinck
Browse files
(Fcar, Fcdr): Doc fixes.
parent
1f2907ee
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 @
da46c5be
...
...
@@ -523,8 +523,8 @@ 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'.
See Info node `(elisp)Cons Cells' for a discussion of basic
Lisp
concepts such as car, cdr, cons cell and list. */)
See Info node `(elisp)Cons Cells' for a discussion of
related
basic
Lisp
concepts such as car, cdr, cons cell and list. */)
(list)
register Lisp_Object list;
{
...
...
@@ -554,8 +554,8 @@ 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'.
See Info node `(elisp)Cons Cells' for a discussion of basic
Lisp
concepts such as cdr, car, cons cell and list. */)
See Info node `(elisp)Cons Cells' for a discussion of
related
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