branch: externals/compat commit 54c79dadd748e023ab58f226ce1f5dcb957fd2f4 Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
Remove :realnames --- compat-27.el | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/compat-27.el b/compat-27.el index 026ed44bbb..752a5d82db 100644 --- a/compat-27.el +++ b/compat-27.el @@ -766,15 +766,13 @@ The return value is a string (or nil in case we can’t find it)." (compat-defun prop-match-p (match) "Return non-nil if MATCH is a `prop-match' object." - :realname compat--prop-match-p-with-vector :max-version "26.1" - (and (vectorp match) (eq (aref match 0) 'prop-match))) + (and (vectorp match) (eq (aref match 0) 'prop-match))) ;; Vector (compat-defun prop-match-p (match) "Return non-nil if MATCH is a `prop-match' object." - :realname compat--prop-match-p-with-record :min-version "26.1" - (eq (type-of match) 'prop-match)) + (eq (type-of match) 'prop-match)) ;; Record (compat-defun prop-match-beginning (match) "Retrieve the position where MATCH begins."