+2007-07-30 Daiki Ueno <ueno@unixuser.org>
+
+ * epa-file.el (epa-file-insert-file-contents): Ignore errors from
+ file-local-copy.
+
2007-07-29 Daiki Ueno <ueno@unixuser.org>
* EasyPG: Version 0.0.14 released.
(if (and visit (or beg end))
(error "Attempt to visit less than an entire file"))
(setq file (expand-file-name file))
- (let* ((local-copy (epa-file-run-real-handler #'file-local-copy (list file)))
+ (let* ((local-copy
+ (condition-case inl
+ (epa-file-run-real-handler #'file-local-copy (list file))
+ (error)))
(local-file (or local-copy file))
(context (epg-make-context))
string length entry)