aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorTEC <tec@tecosaur.com>2021-06-28 16:44:33 +0800
committerJonas Bernoulli <jonas@bernoul.li>2021-06-28 11:23:12 +0200
commit3a39338a4382de13972adb55c528a8ec68e7ab21 (patch)
tree98baa1dc524fbecbd22c72caef5a34d3d15d6844 /Documentation
parentea1f626b0adfc25e5beacc6f4c9d8cff6d5cfc35 (diff)
magit-log-select-quit: Actually call quit function
Since `magit-log-select-quit-function' is a buffer-local variable, killing the buffer then calling the function means that nothing is ever called. The quit function should be temporarily bound so it isn't lost.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/RelNotes/3.1.0.org3
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/RelNotes/3.1.0.org b/Documentation/RelNotes/3.1.0.org
index 69e63bd..c077291 100644
--- a/Documentation/RelNotes/3.1.0.org
+++ b/Documentation/RelNotes/3.1.0.org
@@ -13,3 +13,6 @@
- A regression in v3.0.0 prevented ~magit-bisect-run~ from executing
~git bisect run~ unless ~magit-bisect-start~ was called beforehand.
+
+- ~magit-log-select-quit~ failed to call ~magit-log-select-quit-function~.
+ #4423