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

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

[elpa] externals/gnorb 1b037b7 006/449: gnorb-utils.el: Common utility f


From: Stefan Monnier
Subject: [elpa] externals/gnorb 1b037b7 006/449: gnorb-utils.el: Common utility file.
Date: Fri, 27 Nov 2020 23:14:57 -0500 (EST)

branch: externals/gnorb
commit 1b037b7aad565f6cad258b281bdbc7e81f7b91fc
Author: Eric Abrahamsen <eric@ericabrahamsen.net>
Commit: Eric Abrahamsen <eric@ericabrahamsen.net>

    gnorb-utils.el: Common utility file.
    
    Still trying to make partial loading work okay. Not sure there's really
    a point, though.
---
 lisp/gnorb-bbdb.el                |  2 +-
 lisp/gnorb-gnus.el                |  2 +-
 lisp/gnorb-org.el                 |  2 +-
 lisp/{gnorb.el => gnorb-utils.el} | 15 ++++++---------
 lisp/gnorb.el                     |  9 +--------
 5 files changed, 10 insertions(+), 20 deletions(-)

diff --git a/lisp/gnorb-bbdb.el b/lisp/gnorb-bbdb.el
index 2db8db3..7b88ee9 100644
--- a/lisp/gnorb-bbdb.el
+++ b/lisp/gnorb-bbdb.el
@@ -24,7 +24,7 @@
 
 ;;; Code:
 
-(require 'bbdb)
+(require 'gnorb-utils)
 
 (defgroup gnorb-bbdb nil
   "The BBDB bits of gnorb."
diff --git a/lisp/gnorb-gnus.el b/lisp/gnorb-gnus.el
index e5b5667..eb55071 100644
--- a/lisp/gnorb-gnus.el
+++ b/lisp/gnorb-gnus.el
@@ -24,7 +24,7 @@
 
 ;;; Code:
 
-(require 'gnus)
+(require 'gnorb-utils)
 
 (defgroup gnorb-gnus nil
   "The Gnus bits of Gnorb."
diff --git a/lisp/gnorb-org.el b/lisp/gnorb-org.el
index 07cdd0a..731c30f 100644
--- a/lisp/gnorb-org.el
+++ b/lisp/gnorb-org.el
@@ -24,7 +24,7 @@
 
 ;;; Code:
 
-(require 'org)
+(require 'gnorb-utils)
 
 
 (defgroup gnorb-org nil
diff --git a/lisp/gnorb.el b/lisp/gnorb-utils.el
similarity index 80%
copy from lisp/gnorb.el
copy to lisp/gnorb-utils.el
index 7fe337d..a968e63 100644
--- a/lisp/gnorb.el
+++ b/lisp/gnorb-utils.el
@@ -1,9 +1,9 @@
-;;; gnorb.el --- Glue code between Gnus, Org, and BBDB
+;;; gnorb-utils.el --- Common utilities for all gnorb stuff.
 
 ;; Copyright (C) 2014  Eric Abrahamsen
 
 ;; Author: Eric Abrahamsen <eric@ericabrahamsen.net>
-;; Keywords: 
+;; Keywords:
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
@@ -20,21 +20,18 @@
 
 ;;; Commentary:
 
-;; Load this file to load everything.
+;;
 
 ;;; Code:
 
 (require 'gnus)
 (require 'org)
 (require 'bbdb)
-(require 'gnorb-gnus)
-(require 'gnorb-org)
-(require 'gnorb-bbdb)
+
 
 (defgroup gnorb nil
   "Glue code between Gnus, Org, and BBDB."
   :tag "Gnorb")
 
-
-(provide 'gnorb)
-;;; gnorb.el ends here
+(provide 'gnorb-utils)
+;;; gnorb-utils.el ends here
diff --git a/lisp/gnorb.el b/lisp/gnorb.el
index 7fe337d..c798198 100644
--- a/lisp/gnorb.el
+++ b/lisp/gnorb.el
@@ -24,17 +24,10 @@
 
 ;;; Code:
 
-(require 'gnus)
-(require 'org)
-(require 'bbdb)
+(require 'gnorb-utils)
 (require 'gnorb-gnus)
 (require 'gnorb-org)
 (require 'gnorb-bbdb)
 
-(defgroup gnorb nil
-  "Glue code between Gnus, Org, and BBDB."
-  :tag "Gnorb")
-
-
 (provide 'gnorb)
 ;;; gnorb.el ends here



reply via email to

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