OSDN Git Service

2007-08-02 Adrian Aichner <adrian@xemacs.org>
authorDaiki Ueno <ueno@unixuser.org>
Sun, 5 Aug 2007 08:14:29 +0000 (08:14 +0000)
committerDaiki Ueno <ueno@unixuser.org>
Sun, 5 Aug 2007 08:14:29 +0000 (08:14 +0000)
       * epa.el (epa-validity-high): Fix load error by adding missing
       paren pair.

ChangeLog
epa.el

index 24b5a99..bd91ebc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-02  Adrian Aichner  <adrian@xemacs.org>
+
+       * epa.el (epa-validity-high): Fix load error by adding missing
+       paren pair.
+
 2007-07-30  Daiki Ueno  <ueno@unixuser.org>
 
        * epa-file.el (epa-file-insert-file-contents): Ignore errors from
diff --git a/epa.el b/epa.el
index 57dcb70..de99999 100644 (file)
--- a/epa.el
+++ b/epa.el
@@ -55,9 +55,9 @@ the separate window."
                        '(:weight bold)
                      '(:bold t))))
     (t
-     ,@(if (assq ':weight custom-face-attributes)
-          '(:weight bold)
-        '(:bold t))))
+     (,@(if (assq ':weight custom-face-attributes)
+           '(:weight bold)
+         '(:bold t)))))
   "Face used for displaying the high validity."
   :group 'epa-faces)