[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/gnorb 9b2b269 319/449: Use with-eval-after-load not eva
From: |
Stefan Monnier |
Subject: |
[elpa] externals/gnorb 9b2b269 319/449: Use with-eval-after-load not eval-after-load |
Date: |
Fri, 27 Nov 2020 23:16:03 -0500 (EST) |
branch: externals/gnorb
commit 9b2b269a387fe33114f52f878027e979d8acc370
Author: Eric Abrahamsen <eric@ericabrahamsen.net>
Commit: Eric Abrahamsen <eric@ericabrahamsen.net>
Use with-eval-after-load not eval-after-load
* gnorb-utils.el (gnorb-tracking-initialize): Switch.
* gnorb.el (gnus): Switch.
---
gnorb-utils.el | 7 +++----
gnorb.el | 17 ++++++++---------
2 files changed, 11 insertions(+), 13 deletions(-)
diff --git a/gnorb-utils.el b/gnorb-utils.el
index 07fdba9..d7f5e86 100644
--- a/gnorb-utils.el
+++ b/gnorb-utils.el
@@ -494,10 +494,9 @@ Gnus messages and Org headings. This requires that the Gnus
registry be in use, and should be called after the call to
`gnus-registry-initialize'."
(require 'gnorb-registry)
- (eval-after-load 'gnus-registry
- '(progn
- (add-to-list 'gnus-registry-extra-entries-precious 'gnorb-ids)
- (add-to-list 'gnus-registry-track-extra 'gnorb-ids)))
+ (with-eval-after-load 'gnus-registry
+ (add-to-list 'gnus-registry-extra-entries-precious 'gnorb-ids)
+ (add-to-list 'gnus-registry-track-extra 'gnorb-ids))
(add-hook
'gnus-started-hook
(lambda ()
diff --git a/gnorb.el b/gnorb.el
index 6dd4b0b..cb7d908 100644
--- a/gnorb.el
+++ b/gnorb.el
@@ -31,15 +31,14 @@
;;; Code:
-(eval-after-load 'gnus
- '(progn
- (require 'nngnorb)
- (require 'gnorb-gnus)
- (require 'gnorb-registry)))
-(eval-after-load 'bbdb
- '(require 'gnorb-bbdb))
-(eval-after-load 'org
- '(require 'gnorb-org))
+(with-eval-after-load 'gnus
+ (require 'nngnorb)
+ (require 'gnorb-gnus)
+ (require 'gnorb-registry))
+(with-eval-after-load 'bbdb
+ (require 'gnorb-bbdb))
+(with-eval-after-load 'org
+ (require 'gnorb-org))
(provide 'gnorb)
- [elpa] externals/gnorb a0f32ad 444/449: [gnorb] Don't allow creation of new headings for incoming trigger, (continued)
- [elpa] externals/gnorb a0f32ad 444/449: [gnorb] Don't allow creation of new headings for incoming trigger, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 78fe298 426/449: [gnorb] Move location of gnorb-gnus-summary-mode-hook, bump to 1.6.1, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 3940f46 431/449: [gnorb] Fix to previous commit, bump to 1.6.3, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 5f9611b 449/449: Fix some quoting problems in doc strings, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 15726f0 419/449: [gnorb] Missing quote in nested `eval-after-load', bump to 1.5.5, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb d5aafc5 445/449: [gnorb] Bump version to 1.6.8, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb a512de8 422/449: gnorb: Remove weird group-name guard, bump to 1.5.7, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb be4c245 425/449: [gnorb] New option gnorb-gnus-refile-use-outline-path, bump to 1.6.0, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 66c2847 447/449: [gnorb] Random unimportant pokings-about, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 81c297f 440/449: [gnorb] We're not supposed to be useing gnorb-org-msg-id-key anymore, Stefan Monnier, 2020/11/27
- [elpa] externals/gnorb 9b2b269 319/449: Use with-eval-after-load not eval-after-load,
Stefan Monnier <=