aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2024-01-20 15:27:15 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2024-01-20 15:27:33 +0100
commit4c8a45b62f9c6c4f9fc2091d18e464775f3a96cd (patch)
treebd675fb8559c3a8a9a1bfe9b2dac0d4953f71c19
parent91389ac87afefa565e8c24f8dc18b14725add176 (diff)
compat--maybe-require: Rename macro to reduce churn
-rw-r--r--compat.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat.el b/compat.el
index 2d2234c..9120341 100644
--- a/compat.el
+++ b/compat.el
@@ -49,11 +49,11 @@
;; Ensure that the newest compatibility layer is required at compile
;; time and runtime, but only if needed.
(eval-when-compile
- (defmacro compat--maybe-require-29 ()
+ (defmacro compat--maybe-require ()
(when (version< emacs-version "29.1")
(require 'compat-29)
'(require 'compat-29))))
-(compat--maybe-require-29)
+(compat--maybe-require)
;;;; Macros for extended compatibility function calls