]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/epa.el (epa-faces): Move definition.
authorJonas Bernoulli <jonas@bernoul.li>
Tue, 18 Feb 2020 15:45:34 +0000 (16:45 +0100)
committerJonas Bernoulli <jonas@bernoul.li>
Wed, 15 Jul 2020 16:06:03 +0000 (18:06 +0200)
Previously option `epa-mail-aliases' was the only option that was
defined right after the group `epa-faces' and right before all the
faces.  Now it is defined with all the other options and thus before
the definition of the `epa-faces' group, which it does not belong to.

lisp/epa.el

index 8ec42187358aafd054f0814d4e587c3dd83a8128..0dd1cff4652f371d1475819a6c61e38f9f559ada 100644 (file)
@@ -56,11 +56,6 @@ If neither t nor nil, ask user for confirmation."
   :type 'integer
   :group 'epa)
 
-(defgroup epa-faces nil
-  "Faces for epa-mode."
-  :version "23.1"
-  :group 'epa)
-
 (defcustom epa-mail-aliases nil
   "Alist of aliases of email addresses that stand for encryption keys.
 Each element is a list of email addresses (ALIAS EXPANSIONS...).
@@ -76,6 +71,11 @@ The command `epa-mail-encrypt' uses this."
   :group 'epa
   :version "24.4")
 
+(defgroup epa-faces nil
+  "Faces for epa-mode."
+  :version "23.1"
+  :group 'epa)
+
 (defface epa-validity-high
   '((default :weight bold)
     (((class color) (background dark)) :foreground "PaleTurquoise"))