Skip to content

Commit

Permalink
Fix arguments of `epg-context-set-progress-callback'.
Browse files Browse the repository at this point in the history
* twittering-mode.el (twittering-write-and-encrypt): fix arguments
of `epg-context-set-progress-callback' because of the difference
between EasyPG 0.0.16 and that included in Emacs23.
  • Loading branch information
cvmat committed Jun 12, 2010
1 parent 0a1ac1c commit 333d527
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
@@ -1,3 +1,9 @@
2010-06-13 Tadashi MATSUO <tad@mymail.twin.jp>

* twittering-mode.el (twittering-write-and-encrypt): fix arguments
of `epg-context-set-progress-callback' because of the difference
between EasyPG 0.0.16 and that included in Emacs23.

2010-06-12 Tadashi MATSUO <tad@mymail.twin.jp>

* twittering-mode.el: Fix bugs.
Expand Down
2 changes: 1 addition & 1 deletion twittering-mode.el
Expand Up @@ -1445,7 +1445,7 @@ like following:
(epg-context-set-passphrase-callback
context #'epa-passphrase-callback-function)
(epg-context-set-progress-callback
context #'epa-progress-callback-function "Encrypting...")
context (cons #'epa-progress-callback-function "Encrypting..."))
(message "Encrypting...")
(condition-case err
(with-temp-file file
Expand Down

0 comments on commit 333d527

Please sign in to comment.