branch: externals/compat
commit c314cdf4273e17e2b4c7183f7d53ebf6e50d29f2
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Remove realnames
---
compat-27.el | 2 --
compat-tests.el | 6 ------
2 files changed, 8 deletions(-)
diff --git a/compat-27.el b/compat-27.el
index 9bf86a3965..d166c1e51f 100644
--- a/compat-27.el
+++ b/compat-27.el
@@ -743,7 +743,6 @@ The return value is a string (or nil in case we can’t find
it)."
(compat-defun make-prop-match (&rest attr)
"Constructor for objects of type ‘prop-match’."
- :realname compat--make-prop-match-with-vector
:max-version "26.1"
:feature text-property-search
(vector
@@ -754,7 +753,6 @@ The return value is a string (or nil in case we can’t find
it)."
(compat-defun make-prop-match (&rest attr)
"Constructor for objects of type ‘prop-match’."
- :realname compat--make-prop-match-with-record
:min-version "26.1"
:feature text-property-search
(record
diff --git a/compat-tests.el b/compat-tests.el
index 09bf330811..470e77609f 100644
--- a/compat-tests.el
+++ b/compat-tests.el
@@ -1659,11 +1659,5 @@
;; ;; (should-equal '(2 . 3) 'defalias)
;; ;; (should-equal '(1 . unevalled) 'defvar))
-;; (unless (fboundp 'make-prop-match)
-;; (defalias 'make-prop-match
-;; (if (version< emacs-version "26.1")
-;; #'compat--make-prop-match-with-vector
-;; #'compat--make-prop-match-with-record)))
-
(provide 'compat-tests)
;;; compat-tests.el ends here