diff options
Diffstat (limited to 'lisp/epa-hook.el')
-rw-r--r-- | lisp/epa-hook.el | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/epa-hook.el b/lisp/epa-hook.el index fc0aa3677bf..f320823a5ab 100644 --- a/lisp/epa-hook.el +++ b/lisp/epa-hook.el @@ -53,15 +53,15 @@ does that automatically." May either be a string or a list of strings.") (put 'epa-file-encrypt-to 'safe-local-variable - (lambda (val) - (or (stringp val) - (and (listp val) - (catch 'safe - (mapc (lambda (elt) - (unless (stringp elt) - (throw 'safe nil))) - val) - t))))) + #'(lambda (val) + (or (stringp val) + (and (listp val) + (catch 'safe + (mapc (lambda (elt) + (unless (stringp elt) + (throw 'safe nil))) + val) + t))))) (put 'epa-file-encrypt-to 'permanent-local t) |