Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
aa1b3f2e
Commit
aa1b3f2e
authored
Nov 22, 2003
by
Luc Teirlinck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fassq, Fassoc, Frassq, Frassoc): Doc fixes.
parent
ded4064f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/fns.c
src/fns.c
+4
-4
No files found.
src/fns.c
View file @
aa1b3f2e
...
...
@@ -1494,7 +1494,7 @@ whose car is ELT. */)
DEFUN
(
"assq"
,
Fassq
,
Sassq
,
2
,
2
,
0
,
doc
:
/* Return non-nil if KEY is `eq' to the car of an element of LIST.
The value is actually the element of LIST whose car is KEY.
The value is actually the
first
element of LIST whose car is KEY.
Elements of LIST that are not conses are ignored. */
)
(
key
,
list
)
Lisp_Object
key
,
list
;
...
...
@@ -1551,7 +1551,7 @@ assq_no_quit (key, list)
DEFUN
(
"assoc"
,
Fassoc
,
Sassoc
,
2
,
2
,
0
,
doc
:
/* Return non-nil if KEY is `equal' to the car of an element of LIST.
The value is actually the element of LIST whose car equals KEY. */
)
The value is actually the
first
element of LIST whose car equals KEY. */
)
(
key
,
list
)
Lisp_Object
key
,
list
;
{
...
...
@@ -1595,7 +1595,7 @@ The value is actually the element of LIST whose car equals KEY. */)
DEFUN
(
"rassq"
,
Frassq
,
Srassq
,
2
,
2
,
0
,
doc
:
/* Return non-nil if KEY is `eq' to the cdr of an element of LIST.
The value is actually the element of LIST whose cdr is KEY. */
)
The value is actually the
first
element of LIST whose cdr is KEY. */
)
(
key
,
list
)
register
Lisp_Object
key
;
Lisp_Object
list
;
...
...
@@ -1637,7 +1637,7 @@ The value is actually the element of LIST whose cdr is KEY. */)
DEFUN
(
"rassoc"
,
Frassoc
,
Srassoc
,
2
,
2
,
0
,
doc
:
/* Return non-nil if KEY is `equal' to the cdr of an element of LIST.
The value is actually the element of LIST whose cdr equals KEY. */
)
The value is actually the
first
element of LIST whose cdr equals KEY. */
)
(
key
,
list
)
Lisp_Object
key
,
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