diff options
author | Jonas Bernoulli <jonas@bernoul.li> | 2020-02-18 16:45:34 +0100 |
---|---|---|
committer | Jonas Bernoulli <jonas@bernoul.li> | 2020-07-15 18:06:03 +0200 |
commit | c2ef4a13c0cfb44a950fc32e3103952bb8e52772 (patch) | |
tree | 759d36190c8ce7a52d2f6a1808cafb949d08127c /lisp/epa.el | |
parent | 363f1d4d5e836d0b95242d5fa8b7f32af3411419 (diff) | |
download | emacs-c2ef4a13c0cfb44a950fc32e3103952bb8e52772.tar.gz emacs-c2ef4a13c0cfb44a950fc32e3103952bb8e52772.tar.bz2 emacs-c2ef4a13c0cfb44a950fc32e3103952bb8e52772.zip |
* lisp/epa.el (epa-faces): Move definition.
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.
Diffstat (limited to 'lisp/epa.el')
-rw-r--r-- | lisp/epa.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/epa.el b/lisp/epa.el index 8ec42187358..0dd1cff4652 100644 --- a/lisp/epa.el +++ b/lisp/epa.el @@ -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")) |