[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/gnorb 8a9c167 277/449: Fix the cl-lib loading stuff
From: |
Stefan Monnier |
Subject: |
[elpa] externals/gnorb 8a9c167 277/449: Fix the cl-lib loading stuff |
Date: |
Fri, 27 Nov 2020 23:15:55 -0500 (EST) |
branch: externals/gnorb
commit 8a9c16714cd2f5944c83f3d8c050819bbe0bbb1c
Author: Eric Abrahamsen <eric@ericabrahamsen.net>
Commit: Eric Abrahamsen <eric@ericabrahamsen.net>
Fix the cl-lib loading stuff
* gnorb-utils.el: Require cl-lib instead of doing the eval-when-compile
dance for cl.
* gnorb-bbdb.el: No cl
* gnorb-gnus.el: No cl
* gnorb-org.el: No cl
* gnorb-registry.el: Require gnorb-utils
Turns out you're not supposed to do (eval-when-compile (require 'cl))
anymore. Switching to (require 'cl-lib) in gnorb-utils, and make sure
everything else requires that.
---
gnorb-bbdb.el | 3 ---
gnorb-gnus.el | 3 ---
gnorb-org.el | 3 ---
gnorb-registry.el | 1 +
gnorb-utils.el | 3 +--
5 files changed, 2 insertions(+), 11 deletions(-)
diff --git a/gnorb-bbdb.el b/gnorb-bbdb.el
index 058011c..08f24eb 100644
--- a/gnorb-bbdb.el
+++ b/gnorb-bbdb.el
@@ -24,9 +24,6 @@
;;; Code:
-(eval-when-compile
- (require 'cl))
-
(require 'bbdb)
(require 'gnorb-utils)
diff --git a/gnorb-gnus.el b/gnorb-gnus.el
index 4b7a16f..19a7603 100644
--- a/gnorb-gnus.el
+++ b/gnorb-gnus.el
@@ -24,9 +24,6 @@
;;; Code:
-(eval-when-compile
- (require 'cl))
-
(require 'gnus)
(require 'gnorb-utils)
diff --git a/gnorb-org.el b/gnorb-org.el
index 846ded9..4309028 100644
--- a/gnorb-org.el
+++ b/gnorb-org.el
@@ -24,9 +24,6 @@
;;; Code:
-(eval-when-compile
- (require 'cl))
-
(require 'gnorb-utils)
(defgroup gnorb-org nil
diff --git a/gnorb-registry.el b/gnorb-registry.el
index f70531c..dd72ff5 100644
--- a/gnorb-registry.el
+++ b/gnorb-registry.el
@@ -49,6 +49,7 @@
;;; Code:
(require 'gnus-registry)
+(require 'gnorb-utils)
(defgroup gnorb-registry nil
"Gnorb's use of the Gnus registry."
diff --git a/gnorb-utils.el b/gnorb-utils.el
index 81efa32..59794ac 100644
--- a/gnorb-utils.el
+++ b/gnorb-utils.el
@@ -24,8 +24,7 @@
;;; Code:
-(eval-when-compile
- (require 'cl))
+(require 'cl-lib)
(mailcap-parse-mimetypes)
- [elpa] externals/gnorb 2be4a71 240/449: Save point with marker when adding headers to replies, (continued)
- [elpa] externals/gnorb 2be4a71 240/449: Save point with marker when adding headers to replies, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb ba99110 242/449: Check for relevant headings when handling attachments, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 1a0cfc7 243/449: Delete duplicates before and after finding candidates, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 35284f2 248/449: Add TODO for collecting BBDB messages by thread, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 2c0f43d 249/449: Refinements to link extraction, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb e1fb666 257/449: Function for deleting all assocations of an Org heading, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 5688114 258/449: Bugfix: Adding mailtos to newly-setup messages, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 04ec3ab 264/449: Fix logic of choosing heading to trigger, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb de0dff5 274/449: Protection for message disassociation, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 321b23b 276/449: Remove gnus-interactive, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 8a9c167 277/449: Fix the cl-lib loading stuff,
Stefan Monnier <=
- [elpa] externals/gnorb fd91084 278/449: Remove incorrect "fix" for Gnus 5.13, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb c8b80c5 282/449: Bugfix for gnorb-gnus-view, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 9220a10 283/449: Docstring fix, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 4b19c83 288/449: New function for pruning dead associations, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 819b1e5 293/449: Suggest binding gnorb-org-view in Org Agenda, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb c13f4df 301/449: Better check for capture cleanup, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 13bb840 302/449: Hint which heading will be triggered, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 4f99dd7 304/449: Handle conditions where `registry-search' returns nil, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 5897188 305/449: Capture to child/sibling is done, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb b951675 303/449: Merge capture-to-child branch, Stefan Monnier, 2020/11/27