Gnus development mailing list
 help / color / mirror / Atom feed
From: Adrian Aichner <adrian@elisp.de>
To: Daiki Ueno <ueno@unixuser.org>
Cc: gnu-emacs-sources@gnu.org,  ding@gnus.org,
	 emacs-mime-en@m17n.org, emacs-mime-ja-admin@m17n.org
Subject: Re: EasyPG 0.0.14
Date: Thu, 02 Aug 2007 21:27:50 +0200	[thread overview]
Message-ID: <vebx20uh.fsf@mx.qsc.de> (raw)
In-Reply-To: <d2d06994-9045-47dc-b364-8f8e947c7065@well-done.deisui.org> (Daiki Ueno's message of "Sun, 29 Jul 2007 14:12:08 +0900")


Hello Daiki!

I am currently using CVS easypg.

On XEmacs startup I got following backtrace:

(1) (initialization/error) An error has occurred while loading .emacs:

Malformed list: :bold

Backtrace follows:

  apply(face-custom-attributes-set epa-validity-high nil (custom) :bold)
  # bind (display atts tags frame spec face)
  face-display-set(epa-validity-high ((((class color) (background dark)) (:foreground "PaleTurquoise" :bold t)) (t :bold t)) nil (custom))
  # bind (value frames frame args doc spec face)
  custom-declare-face(epa-validity-high ((((class color) (background dark)) (:foreground "PaleTurquoise" :bold t)) (t :bold t)) "Face used for displaying the high validity." :group epa-faces)
  (defface epa-validity-high (backquote ((((class color) (background dark)) (:foreground "PaleTurquoise" (\,@ (if (assq (quote :weight) custom-face-attributes) (quote (:weight bold)) (quote (:bold t)))))) (t (\,@ (if (assq (quote :weight) custom-face-attributes) (quote (:weight bold)) (quote (:bold t))))))) "Face used for displaying the high validity." :group (quote epa-faces))
  # (unwind-protect ...)
<37 lines deleted by Adrian Aichner>
  require(epa-setup)

The fix for the error, which is in 0.0.14 as well, seems obvious:

ChangeLog addition:

2007-08-02  Adrian Aichner  <adrian@xemacs.org>

	* epa.el (epa-validity-high): Fix load error by adding missing
	paren pair.

Index: epa.el
===================================================================
RCS file: /cvs/root/epg/epa.el,v
retrieving revision 1.161
diff -u -u -r1.161 epa.el
--- epa.el	29 Jul 2007 03:37:52 -0000	1.161
+++ epa.el	2 Aug 2007 19:17:27 -0000
@@ -55,9 +55,9 @@
 			'(: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)
 


-- 
Adrian Aichner
 mailto:adrian@xemacs.org
 http://www.xemacs.org/




      reply	other threads:[~2007-08-02 19:27 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-29  5:12 Daiki Ueno
2007-08-02 19:27 ` Adrian Aichner [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=vebx20uh.fsf@mx.qsc.de \
    --to=adrian@elisp.de \
    --cc=ding@gnus.org \
    --cc=emacs-mime-en@m17n.org \
    --cc=emacs-mime-ja-admin@m17n.org \
    --cc=gnu-emacs-sources@gnu.org \
    --cc=ueno@unixuser.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).