# HG changeset patch # User Daiki Ueno # Date 1280057023 -32400 # Node ID 52f61129223038a90c3cf20ce31a54f476237c4e # Parent bbcf76ef0f72d73891fa58b85f7fc5e093f4c8c6 Fix *.gpg file creation (bug#6723). * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE exists before passing an error to find-file-not-found-functions (bug#6723). diff -r bbcf76ef0f72 -r 52f611292230 lisp/ChangeLog --- a/lisp/ChangeLog Sun Jul 25 10:30:57 2010 +0000 +++ b/lisp/ChangeLog Sun Jul 25 20:23:43 2010 +0900 @@ -1,3 +1,9 @@ +2010-07-25 Daiki Ueno + + * epa-file.el (epa-file-insert-file-contents): Check if LOCAL-FILE + exists before passing an error to find-file-not-found-functions + (bug#6723). + 2010-07-23 Lukas Huonker * play/tetris.el (tetris-tty-colors, tetris-x-colors, tetris-blank): diff -r bbcf76ef0f72 -r 52f611292230 lisp/epa-file.el --- a/lisp/epa-file.el Sun Jul 25 10:30:57 2010 +0000 +++ b/lisp/epa-file.el Sun Jul 25 20:23:43 2010 +0900 @@ -139,15 +139,16 @@ (error (if (setq entry (assoc file epa-file-passphrase-alist)) (setcdr entry nil)) - ;; Hack to prevent find-file from opening empty buffer - ;; when decryption failed (bug#6568). See the place - ;; where `find-file-not-found-functions' are called in - ;; `find-file-noselect-1'. - (make-local-variable 'epa-file-error) - (setq epa-file-error error) - (add-hook 'find-file-not-found-functions - 'epa-file--find-file-not-found-function - nil t) + (when (file-exists-p local-file) + ;; Hack to prevent find-file from opening empty buffer + ;; when decryption failed (bug#6568). See the place + ;; where `find-file-not-found-functions' are called in + ;; `find-file-noselect-1'. + (make-local-variable 'epa-file-error) + (setq epa-file-error error) + (add-hook 'find-file-not-found-functions + 'epa-file--find-file-not-found-function + nil t)) (signal 'file-error (cons "Opening input file" (cdr error))))) (make-local-variable 'epa-file-encrypt-to)