From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/65012 Path: news.gmane.org!not-for-mail From: Adrian Aichner Newsgroups: gmane.emacs.gnus.general,gmane.emacs.sources Subject: Re: EasyPG 0.0.14 Date: Thu, 02 Aug 2007 21:27:50 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-Trace: sea.gmane.org 1186082963 29156 80.91.229.12 (2 Aug 2007 19:29:23 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 2 Aug 2007 19:29:23 +0000 (UTC) Cc: gnu-emacs-sources@gnu.org, ding@gnus.org, emacs-mime-en@m17n.org, emacs-mime-ja-admin@m17n.org To: Daiki Ueno Original-X-From: ding-owner+M13522@lists.math.uh.edu Thu Aug 02 21:29:17 2007 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.50) id 1IGgMF-0005xq-1P for ding-account@gmane.org; Thu, 02 Aug 2007 21:29:15 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1IGgLG-00016q-0F; Thu, 02 Aug 2007 14:28:14 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1IGgLE-00016P-9w for ding@lists.math.uh.edu; Thu, 02 Aug 2007 14:28:12 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.67) (envelope-from ) id 1IGgL8-0006Rg-35 for ding@lists.math.uh.edu; Thu, 02 Aug 2007 14:28:12 -0500 Original-Received: from mx02.qsc.de ([213.148.130.14]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1IGgL6-0007Fd-00 for ; Thu, 02 Aug 2007 21:28:04 +0200 Original-Received: from TANG (port-212-202-78-14.dynamic.qsc.de [212.202.78.14]) by mx02.qsc.de (Postfix) with ESMTP id C5B2716C0282; Thu, 2 Aug 2007 21:27:33 +0200 (CEST) X-Face: 4[iHdXiTu\V3u[~\I)*}#kYF[-tYl3VZga/HSOP|K,{L Rtu@f0y/=O&Cu}\:~d|P$JON?pn?j,&CnPb1z#/TL9bkAJwyol&a:SvYj-VYbM=Dtxhk9 =w|R6U3_;SH&B (Daiki Ueno's message of "Sun, 29 Jul 2007 14:12:08 +0900") User-Agent: Gnus/5.1007 (Gnus v5.10.7) XEmacs/21.5-b28 (windows-nt) X-Spam-Score: -2.6 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:65012 gmane.emacs.sources:2485 Archived-At: 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 * 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/