Skip to content
This repository has been archived by the owner on Jun 17, 2023. It is now read-only.

Fix TRAMP regression #43

Merged
merged 1 commit into from
Jan 4, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ztree-diff-model.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down