>From 816ad61536b5c2697d8a160e425296f9c26ca46f Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Fri, 29 Jul 2022 13:54:47 +0200 Subject: [PATCH] * subr.el (buffer-match-p): Add t as trivial a condition --- lisp/subr.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/subr.el b/lisp/subr.el index 6b121a314a..9f7cb3ab6a 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -6899,6 +6899,7 @@ string-lines (defun buffer-match-p (condition buffer-or-name &optional arg) "Return non-nil if BUFFER-OR-NAME matches CONDITION. CONDITION is either: +- the symbol t, to always match - a regular expression, to match a buffer name, - a predicate function that takes a buffer object and ARG as arguments, and returns non-nil if the buffer matches, @@ -6921,6 +6922,7 @@ buffer-match-p (catch 'match (dolist (condition conditions) (when (cond + ((eq condition t)) ((stringp condition) (string-match-p condition (buffer-name buffer))) ((functionp condition) -- 2.37.1