diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2023-01-05 15:02:11 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2023-01-05 15:02:11 +0100 |
| commit | f68ed51775be940b2c0aba9f0b038bee3832d028 (patch) | |
| tree | 3ec4a772a82fc21a36623b1bfe20b0437c648885 | |
| parent | e20cecba928fba58657e2410aa735dc5eaa206dd (diff) | |
Fix version bounds
| -rw-r--r-- | compat-27.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compat-27.el b/compat-27.el index d14a9ea..f3f6d5b 100644 --- a/compat-27.el +++ b/compat-27.el @@ -39,7 +39,7 @@ is nil)." "Return OBJECT's length if it is a proper list, nil otherwise. A proper list is neither circular nor dotted (i.e., its last cdr is nil)." - :max-version "25.3" + :max-version "25.99" ;; On Emacs older than 26.1 we have to use the Tortoise and Hare algorithm (when (listp object) (catch 'cycle @@ -717,7 +717,7 @@ The return value is a string (or nil in case we can’t find it)." (compat-defun make-prop-match (&rest attr) ;; <OK> "Constructor for objects of type ‘prop-match’." - :max-version "25.3" + :max-version "25.99" :feature text-property-search (vector 'prop-match @@ -737,7 +737,7 @@ The return value is a string (or nil in case we can’t find it)." (compat-defun prop-match-p (match) ;; <OK> "Return non-nil if MATCH is a `prop-match' object." - :max-version "25.3" + :max-version "25.99" :feature text-property-search (and (vectorp match) ;; Vector (> (length match) 0) |
