emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/compat 54c79dadd7 2/2: Remove :realnames


From: ELPA Syncer
Subject: [elpa] externals/compat 54c79dadd7 2/2: Remove :realnames
Date: Tue, 3 Jan 2023 16:57:27 -0500 (EST)

branch: externals/compat
commit 54c79dadd748e023ab58f226ce1f5dcb957fd2f4
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@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."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]