Gnus development mailing list
 help / color / mirror / Atom feed
* EasyPG 0.0.14
@ 2007-07-29  5:12 Daiki Ueno
  2007-08-02 19:27 ` Adrian Aichner
  0 siblings, 1 reply; 2+ messages in thread
From: Daiki Ueno @ 2007-07-29  5:12 UTC (permalink / raw)
  To: gnu-emacs-sources; +Cc: ding, emacs-mime-en, emacs-mime-ja-admin

Hi,

The 14th release of EasyPG is available from http://www.easypg.org.

EasyPG is an all-in-one GnuPG interface for Emacs.  EasyPG consists of
two parts: EasyPG Assistant and EasyPG Library.

* EasyPG Assistant is a set of convenient tools to use GnuPG from Emacs,
  which provides:

    - Keyring browser.
    - Cryptographic operations on regions.
    - Cryptographic operations on files.
    - Dired integration.
    - mail-mode integration.
    - Encryption/decryption of *.gpg files.

* EasyPG Library is a sort of an elisp port of GPGME, a wrapper library
  which provides API to access some of the GnuPG functions.

* Major changes in 0.0.14

** epa-file can handle remote files over Tramp.

** Workaround for a face initialization bug of GNU Emacs.

** Follow the face naming convention of GNU Emacs.

Regards,
-- 
Daiki Ueno



^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: EasyPG 0.0.14
  2007-07-29  5:12 EasyPG 0.0.14 Daiki Ueno
@ 2007-08-02 19:27 ` Adrian Aichner
  0 siblings, 0 replies; 2+ messages in thread
From: Adrian Aichner @ 2007-08-02 19:27 UTC (permalink / raw)
  To: Daiki Ueno; +Cc: gnu-emacs-sources, ding, emacs-mime-en, emacs-mime-ja-admin


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/




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-08-02 19:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-07-29  5:12 EasyPG 0.0.14 Daiki Ueno
2007-08-02 19:27 ` Adrian Aichner

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).