branch: externals/vlf
commit 0fa8e8d6bf405cf0a1d04683719dd6c2b0b0b444
Author: Andrey Kotlarski <[email protected]>
Commit: Andrey Kotlarski <[email protected]>
Update buffer name on user interruption during ediff.
---
vlf-ediff.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/vlf-ediff.el b/vlf-ediff.el
index ae53c90..829ce98 100644
--- a/vlf-ediff.el
+++ b/vlf-ediff.el
@@ -220,10 +220,10 @@ logical chunks in case there is no difference at the
current ones."
(unless done
(set-buffer buffer-A)
(set-buffer-modified-p nil)
- (vlf-move-to-chunk (car chunk-A) (cdr chunk-A) t)
+ (vlf-move-to-chunk (car chunk-A) (cdr chunk-A))
(set-buffer buffer-B)
(set-buffer-modified-p nil)
- (vlf-move-to-chunk (car chunk-B) (cdr chunk-B) t)
+ (vlf-move-to-chunk (car chunk-B) (cdr chunk-B))
(set-buffer ediff-buffer)
(ediff-update-diffs)
(vlf-ediff-refine buffer-A buffer-B))))))