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

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

[elpa] externals/gnorb ba4ec1b 004/449: Add customization skeleton.


From: Stefan Monnier
Subject: [elpa] externals/gnorb ba4ec1b 004/449: Add customization skeleton.
Date: Fri, 27 Nov 2020 23:14:57 -0500 (EST)

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

    Add customization skeleton.
---
 lisp/gnorb-bbdb.el | 5 +++++
 lisp/gnorb-gnus.el | 6 ++++++
 lisp/gnorb-org.el  | 5 +++++
 lisp/gnorb.el      | 4 ++++
 4 files changed, 20 insertions(+)

diff --git a/lisp/gnorb-bbdb.el b/lisp/gnorb-bbdb.el
index 5bb16f5..ff84370 100644
--- a/lisp/gnorb-bbdb.el
+++ b/lisp/gnorb-bbdb.el
@@ -26,6 +26,11 @@
 
 (require 'bbdb)
 
+(defgroup gnorb-bbdb nil
+  "The BBDB bits of gnorb."
+  :tag "Gnorb BBDB"
+  :group 'gnorb)
+
 
 (provide 'gnorb-bbdb)
 ;;; gnorb-bbdb.el ends here
diff --git a/lisp/gnorb-gnus.el b/lisp/gnorb-gnus.el
index 25771e5..e5b5667 100644
--- a/lisp/gnorb-gnus.el
+++ b/lisp/gnorb-gnus.el
@@ -26,6 +26,12 @@
 
 (require 'gnus)
 
+(defgroup gnorb-gnus nil
+  "The Gnus bits of Gnorb."
+  :tag "Gnorb Gnus"
+  :group 'gnorb)
+
+
 
 (provide 'gnorb-gnus)
 ;;; gnorb-gnus.el ends here
diff --git a/lisp/gnorb-org.el b/lisp/gnorb-org.el
index 8f586af..07cdd0a 100644
--- a/lisp/gnorb-org.el
+++ b/lisp/gnorb-org.el
@@ -27,6 +27,11 @@
 (require 'org)
 
 
+(defgroup gnorb-org nil
+  "The Org bits of Gnorb."
+  :tag "Gnorb Org"
+  :group 'gnorb)
+
 
 (provide 'gnorb-org)
 ;;; gnorb-org.el ends here
diff --git a/lisp/gnorb.el b/lisp/gnorb.el
index c8160ff..7fe337d 100644
--- a/lisp/gnorb.el
+++ b/lisp/gnorb.el
@@ -31,6 +31,10 @@
 (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]