aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2021-08-27 18:00:00 +0200
committerJonas Bernoulli <jonas@bernoul.li>2021-08-29 20:49:44 +0200
commitbac25e73c50fda8ed319cebb69f20e56f8bc7376 (patch)
treef4dac119ef3466c24d3393e8bf88db261e7b0d65 /Documentation
parent5a0cf9aaa9acf53c68c0fe98883c081aa5e29dd3 (diff)
Avoid needless selection re-highlighting
The old attempt in [1: 1301db2c2] did not work because region highlighting is updated more often than section highlighting (on redisplay, not just on post-command-hook) and the former always reset the state that could allow for the latter to be avoided. Closes #3976. 1: 2015-04-29 1301db2c2e6e21beac50fa215d543c09bb8516c5 avoid re-highlighting when moving within the same section
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/RelNotes/3.3.0.org3
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/RelNotes/3.3.0.org b/Documentation/RelNotes/3.3.0.org
index 4443e07..5ec65ea 100644
--- a/Documentation/RelNotes/3.3.0.org
+++ b/Documentation/RelNotes/3.3.0.org
@@ -47,3 +47,6 @@
~magit-wip-log-current~ failed to extract the previous tips of the
wip refs from the reflog (which is relevant when
~~magit-wip-merge-branch~ is nil).
+
+- An old attempt to avoid needlessly updating section highlighting
+ did not actually succeed. #3976