branch: scratch/add-vdiff
commit 7fbb20e56d4dc9981f59489e7459dcf31c3b239e
Author: justbur <[email protected]>
Commit: justbur <[email protected]>
Nil temp-session after using it
---
vdiff.el | 2 ++
1 file changed, 2 insertions(+)
diff --git a/vdiff.el b/vdiff.el
index 3a56fec..d971a27 100644
--- a/vdiff.el
+++ b/vdiff.el
@@ -1662,6 +1662,7 @@ function for ON-QUIT to do something useful with the
result."
(vdiff-mode -1)
(vdiff-3way-mode -1)
(vdiff-mode 1)))
+ (setq vdiff--temp-session nil)
(vdiff-refresh #'vdiff--scroll-function)))
(defcustom vdiff-3way-layout-function 'vdiff-3way-layout-function-default
@@ -1718,6 +1719,7 @@ function for ON-QUIT to do something useful with the
result."
(vdiff-mode -1)
(vdiff-3way-mode -1)
(vdiff-3way-mode 1)))
+ (setq vdiff--temp-session nil)
(vdiff-refresh #'vdiff--scroll-function)))
;;;###autoload