summaryrefslogtreecommitdiff
path: root/compat.el
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2023-07-23 11:14:03 +0200
committerDaniel Mendler <mail@daniel-mendler.de>2023-07-23 11:21:02 +0200
commite532a5d4d5f12964a21dd7a69b142562051919e4 (patch)
treee1c1193e0c46af651fa3e023a9992796515f554c /compat.el
parente0ed957c2f6e71e190659b5e1b08a6b466667d4d (diff)
Update Emacs version to 29.1
See emacs-29 branch commit 7d1737071fba1fd83039aac34f34f6b90c9579b8
Diffstat (limited to 'compat.el')
-rw-r--r--compat.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/compat.el b/compat.el
index 646ad99..2da7bb4 100644
--- a/compat.el
+++ b/compat.el
@@ -50,8 +50,7 @@
;; time and runtime, but only if needed.
(eval-when-compile
(defmacro compat--maybe-require-29 ()
- ;; TODO Update to 29.1 as soon as the Emacs emacs-29 branch version bumped
- (when (version< emacs-version "29.0.90")
+ (when (< emacs-major-version 29)
(require 'compat-29)
'(require 'compat-29))))
(compat--maybe-require-29)