diff options
author | Daiki Ueno <ueno@gnu.org> | 2014-11-06 12:40:03 +0900 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2014-11-06 12:40:03 +0900 |
commit | f374845f4c52598e6af79dcc32f02356da796074 (patch) | |
tree | 08f0433a71c3212917493efde150309b2c291760 /lisp/epg.el | |
parent | 577ef0bc58b5e8fd048bcc5bae8c34c4020fa2cc (diff) | |
download | emacs-f374845f4c52598e6af79dcc32f02356da796074.tar.gz |
epg: Fix the last commit
* epg.el (epg-context): Initialize ERROR-OUTPUT as "" instead of nil.
Diffstat (limited to 'lisp/epg.el')
-rw-r--r-- | lisp/epg.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/epg.el b/lisp/epg.el index 9c002e4ae30..0c74531d7b8 100644 --- a/lisp/epg.el +++ b/lisp/epg.el @@ -212,7 +212,7 @@ result operation pinentry-mode - error-output) + (error-output "")) ;; This is not an alias, just so we can mark it as autoloaded. ;;;###autoload |