]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fassoc_string): Tweak docstring.
authorChong Yidong <cyd@stupidchicken.com>
Sat, 5 Apr 2008 21:03:47 +0000 (21:03 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 5 Apr 2008 21:03:47 +0000 (21:03 +0000)
src/minibuf.c

index 724de3fc713438a2643ac8df3ca1a677ee37561b..13e54fb1756858a20ae4b4bf8fd1700696df3549 100644 (file)
@@ -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;