Fix 'Tramp: sending password' loop caused by associate!

This commit is contained in:
Henrik Lissner 2017-04-27 18:05:21 -04:00
parent 79d6938723
commit 0791277467

View file

@ -182,6 +182,7 @@ Body forms can access the hook's arguments through the let-bound variable
(defun ,hook-name () (defun ,hook-name ()
(when (and (boundp ',mode) (when (and (boundp ',mode)
(not ,mode) (not ,mode)
(and buffer-file-name (not (file-remote-p buffer-file-name)))
,(if match `(if buffer-file-name (string-match-p ,match buffer-file-name)) t) ,(if match `(if buffer-file-name (string-match-p ,match buffer-file-name)) t)
,(if files (doom--resolve-paths files) t) ,(if files (doom--resolve-paths files) t)
,(or pred-form t)) ,(or pred-form t))