* auth-source.el (with-auth-source-epa-overrides): Fix backquoting bug.
authorTed Zlatanov <tzz@lifelogs.com>
Sat, 18 Jun 2011 18:09:56 +0000 (13:09 -0500)
committerTed Zlatanov <tzz@lifelogs.com>
Sat, 18 Jun 2011 18:09:56 +0000 (13:09 -0500)
lisp/ChangeLog
lisp/auth-source.el

index 00f305c..bd0b220 100644 (file)
@@ -5,7 +5,7 @@
        configured per file.  Experimental, so defaults to 'never.
        (auth-source-netrc-create): Use it.  Still experimental code.
        (with-auth-source-epa-overrides): Use `find-file-hooks' if
-       `find-file-hook' is unbound (XEmacs fix).
+       `find-file-hook' is unbound (XEmacs fix).  Fix backquoting bug.
 
 2011-06-16  Teodor Zlatanov  <tzz@lifelogs.com>
 
index 21df923..0f2622a 100644 (file)
@@ -980,7 +980,7 @@ Note that the MAX parameter is used so we can exit the parse early."
          (,(if (boundp 'find-file-hook) 'find-file-hook 'find-file-hooks)
           ',(remove
              'epa-file-find-file-hook
-             ,(if (boundp 'find-file-hook) 'find-file-hook 'find-file-hooks)))
+             (if (boundp 'find-file-hook) 'find-file-hook 'find-file-hooks)))
          (auto-mode-alist
           ',(if (boundp 'epa-file-auto-mode-alist-entry)
                 (remove (symbol-value 'epa-file-auto-mode-alist-entry)