X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/3fe687288678f10dd6697a2daf86cd15340fc6bb..06d8ace51597cd41e110560a56a1abeb6cce23d6:/lisp/epa-hook.el diff --git a/lisp/epa-hook.el b/lisp/epa-hook.el index a84308fbe3..594f482b57 100644 --- a/lisp/epa-hook.el +++ b/lisp/epa-hook.el @@ -1,8 +1,9 @@ ;;; epa-hook.el --- preloaded code to enable epa-file.el -;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. ;; Author: Daiki Ueno ;; Keywords: PGP, GnuPG +;; Package: emacs ;; This file is part of GNU Emacs. @@ -31,7 +32,7 @@ (if (fboundp 'epa-file-name-regexp-update) (epa-file-name-regexp-update))) -(defcustom epa-file-name-regexp "\\.gpg\\(~\\|\\.~[0-9]+~\\)?\\'" +(defcustom epa-file-name-regexp (purecopy "\\.gpg\\(~\\|\\.~[0-9]+~\\)?\\'") "Regexp which matches filenames to be encrypted with GnuPG. If you set this outside Custom while epa-file is already enabled, you @@ -79,14 +80,18 @@ May either be a string or a list of strings.") (if (and buffer-file-name (string-match epa-file-name-regexp buffer-file-name) epa-file-inhibit-auto-save) - (auto-save-mode 0)) - (set-buffer-modified-p nil)) + (auto-save-mode 0))) (define-minor-mode auto-encryption-mode "Toggle automatic file encryption and decryption. With prefix argument ARG, turn auto encryption on if positive, else off. Return the new status of auto encryption (non-nil means on)." :global t :init-value t :group 'epa-file :version "23.1" + ;; We'd like to use custom-initialize-set here so the setup is done + ;; before dumping, but at the point where the defcustom is evaluated, + ;; the corresponding function isn't defined yet, so + ;; custom-initialize-set signals an error. + :initialize 'custom-initialize-delay (setq file-name-handler-alist (delq epa-file-handler file-name-handler-alist)) (remove-hook 'find-file-hooks 'epa-file-find-file-hook) @@ -104,5 +109,4 @@ Return the new status of auto encryption (non-nil means on)." (provide 'epa-hook) -;; arch-tag: f75c8a50-d32e-4eb3-9ec6-9e940c1fc8b5 -;;; epa-file-hook.el ends here +;;; epa-hook.el ends here