]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/window.el (display-buffer-assq-regexp): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Sat, 16 Apr 2022 08:41:48 +0000 (11:41 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 16 Apr 2022 08:41:48 +0000 (11:41 +0300)
lisp/window.el

index ea9099554142c6a5c275fae576bf366bf8776f56..f3a09ee462b180985971bbc29a066550a0cd8d28 100644 (file)
@@ -7496,10 +7496,11 @@ all fail.  It should never be set by programs or users.  See
 (put 'display-buffer-fallback-action 'risky-local-variable t)
 
 (defun display-buffer-assq-regexp (buffer-or-name alist action)
-  "Retrieve ALIST entry corresponding to BUFFER-NAME.
-This returns the cdr of the alist entry ALIST if key and
-buffer-or-name satisfy `buffer-match-p'.  ACTION should have the
-form of the action argument passed to `display-buffer'."
+  "Retrieve ALIST entry corresponding to buffer specified by BUFFER-OR-NAME.
+This returns the cdr of the alist entry ALIST if the entry's
+key (its car) and BUFFER-OR-NAME satisfy `buffer-match-p', using
+the key as CONDITION argument of `buffer-match-p'.  ACTION should
+have the form of the action argument passed to `display-buffer'."
   (catch 'match
     (dolist (entry alist)
       (when (buffer-match-p (car entry) buffer-or-name action)