branch: elpa/magit
commit 56e2340923c7eed029a5840b07260a4f0a7e7e94
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    magit-diff--goto-file-position: Use undefined return value
    
    Since the previous commit the return value doesn't matter anymore.
    Prior to that we should have used `and-let*' instead of `when-let'.
---
 lisp/magit-diff.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lisp/magit-diff.el b/lisp/magit-diff.el
index 4901d0d49d0..fc794544b66 100644
--- a/lisp/magit-diff.el
+++ b/lisp/magit-diff.el
@@ -1459,8 +1459,7 @@ for a revision."
             (t
              (goto-char (oref section start))
              (setq section (oref section parent))))
-      (magit-section-reveal section))
-    t))
+      (magit-section-reveal section))))
 
 ;;;; Setting Commands
 

Reply via email to