+2006-04-30 Daiki Ueno <ueno@unixuser.org>
+
+ * epg.el (epg-read-output): Don't convert line endings of the
+ output file.
+
2006-04-29 Daiki Ueno <ueno@unixuser.org>
* epg.el (epg-make-signature): Removed user-id; added
(if (fboundp 'set-buffer-multibyte)
(set-buffer-multibyte nil))
(if (file-exists-p (epg-context-output-file context))
- (let ((coding-system-for-read (if (epg-context-textmode context)
- 'raw-text
- 'binary)))
+ (let ((coding-system-for-read 'binary))
(insert-file-contents (epg-context-output-file context))
(buffer-string)))))