branch: master commit 87c97145c7abb0670b36362e16aed68b3f4e28fd Merge: e1009bb 9aae752 Author: Alexey Veretennikov <txm.four...@gmail.com> Commit: GitHub <nore...@github.com>
Merge pull request #43 from dvzubarev/tramp-fix Fix TRAMP regression --- ztree-diff-model.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ztree-diff-model.el b/ztree-diff-model.el index 1f78d62..c8dbeb2 100644 --- a/ztree-diff-model.el +++ b/ztree-diff-model.el @@ -146,8 +146,8 @@ Returns t if equal." (let* ((file1-untrampified (ztree-untrampify-filename file1)) (file2-untrampified (ztree-untrampify-filename file2))) (if (or - (/= (nth 7 (file-attributes file1-untrampified)) - (nth 7 (file-attributes file2-untrampified))) + (/= (nth 7 (file-attributes file1)) + (nth 7 (file-attributes file2))) (/= 0 (process-file diff-command nil nil nil "-q" file1-untrampified file2-untrampified)))