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

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

[elpa] externals/compat 2ad7057293 70/84: Always load compat-macs.el whi


From: ELPA Syncer
Subject: [elpa] externals/compat 2ad7057293 70/84: Always load compat-macs.el while compiling
Date: Tue, 3 Jan 2023 08:57:37 -0500 (EST)

branch: externals/compat
commit 2ad7057293b0ab74ebbf50808d4581b43a1bff4a
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Always load compat-macs.el while compiling
    
    This is another attempt at solving https://todo.sr.ht/~pkal/compat/7,
    as had been done with 66b83295 before.  The difference is that the
    previous attempt could still avoid re-loading compat-macs.el if
    'compat-macs' had previously been loaded, and hence also be missing
    any new macros that require a manual, full recompilation.
---
 compat-24.el | 2 +-
 compat-25.el | 2 +-
 compat-26.el | 2 +-
 compat-27.el | 2 +-
 compat-28.el | 2 +-
 compat-29.el | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/compat-24.el b/compat-24.el
index d38f0511b4..aa77f3b66f 100644
--- a/compat-24.el
+++ b/compat-24.el
@@ -37,7 +37,7 @@
 
 ;;; Code:
 
-(require 'compat-macs "compat-macs.el")
+(eval-when-compile (load "compat-macs.el" nil t t))
 
 (compat-declare-version "24.4")
 
diff --git a/compat-25.el b/compat-25.el
index 815d9dda0d..54ea191f45 100644
--- a/compat-25.el
+++ b/compat-25.el
@@ -32,7 +32,7 @@
 
 ;;; Code:
 
-(require 'compat-macs "compat-macs.el")
+(eval-when-compile (load "compat-macs.el" nil t t))
 
 (compat-declare-version "25.1")
 
diff --git a/compat-26.el b/compat-26.el
index 5b8cfacf76..6df2545cd7 100644
--- a/compat-26.el
+++ b/compat-26.el
@@ -37,7 +37,7 @@
 
 ;;; Code:
 
-(require 'compat-macs "compat-macs.el")
+(eval-when-compile (load "compat-macs.el" nil t t))
 
 (compat-declare-version "26.1")
 
diff --git a/compat-27.el b/compat-27.el
index e630bb9677..0687dc826f 100644
--- a/compat-27.el
+++ b/compat-27.el
@@ -39,7 +39,7 @@
 
 ;;; Code:
 
-(require 'compat-macs "compat-macs.el")
+(eval-when-compile (load "compat-macs.el" nil t t))
 
 (compat-declare-version "27.1")
 
diff --git a/compat-28.el b/compat-28.el
index a3dc769341..5ce1073830 100644
--- a/compat-28.el
+++ b/compat-28.el
@@ -39,7 +39,7 @@
 
 ;;; Code:
 
-(require 'compat-macs "compat-macs.el")
+(eval-when-compile (load "compat-macs.el" nil t t))
 
 (compat-declare-version "28.1")
 
diff --git a/compat-29.el b/compat-29.el
index 65a300c78f..f7747b7434 100644
--- a/compat-29.el
+++ b/compat-29.el
@@ -33,7 +33,7 @@
 
 ;;; Code:
 
-(eval-when-compile (require 'compat-macs))
+(eval-when-compile (load "compat-macs.el" nil t t))
 
 (compat-declare-version "29.1")
 



reply via email to

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