branch: externals/compat
commit 4bc08592c1d13ac4d3cebba5b64e4b6bbe47e3d6
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Remove compat--internal-buffer-match-p
---
compat-29.el | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/compat-29.el b/compat-29.el
index f417b4e4c4..abeb924c55 100644
--- a/compat-29.el
+++ b/compat-29.el
@@ -285,7 +285,6 @@ CONDITION is either:
to be met.
* `or': the cdr is a list of recursive condition, of which at
least one has to be met."
- :realname compat--internal-buffer-match-p
(letrec
((buffer (get-buffer buffer-or-name))
(match
@@ -331,7 +330,7 @@ ARG is passed to `buffer-match', for predicate conditions in
CONDITION."
(let (bufs)
(dolist (buf (or buffers (buffer-list)))
- (when (compat--internal-buffer-match-p condition (get-buffer buf) arg)
+ (when (buffer-match-p condition (get-buffer buf) arg)
(push buf bufs)))
bufs))