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
c6a82c18
Commit
c6a82c18
authored
Apr 05, 2008
by
Chong Yidong
Browse files
(Fassoc_string): Tweak docstring.
parent
c36e15db
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
src/minibuf.c
src/minibuf.c
+9
-5
No files found.
src/minibuf.c
View file @
c6a82c18
...
...
@@ -2102,11 +2102,15 @@ do_completion ()
DEFUN
(
"assoc-string"
,
Fassoc_string
,
Sassoc_string
,
2
,
3
,
0
,
doc
:
/* Like `assoc' but specifically for strings (and symbols).
Symbols are converted to strings, and unibyte strings are converted to
multibyte for comparison.
Case is ignored if optional arg CASE-FOLD is non-nil.
As opposed to `assoc', it will also match an entry consisting of a single
string rather than a cons cell whose car is a string. */)
This returns the first element of LIST whose car matches the string or
symbol KEY, or nil if no match exists. When performing the
comparison, symbols are first converted to strings, and unibyte
strings to multibyte. If the optional arg CASE-FOLD is non-nil, case
is ignored.
Unlike `assoc', KEY can also match an entry in LIST consisting of a
single string, rather than a cons cell whose car is a string. */
)
(
key
,
list
,
case_fold
)
register
Lisp_Object
key
;
Lisp_Object
list
,
case_fold
;
...
...
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