diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2024-06-24 09:19:42 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2024-06-24 09:19:42 +0200 |
| commit | 2b1ce0c7d9eb0db064fb1681f662cb78a963e7f5 (patch) | |
| tree | 37e5a544cb0744f50142385124d15986cc30b5e9 /lisp/magit-bisect.el | |
| parent | f3b68649692d5f6b68c00d8401e551dd4e7fa884 (diff) | |
Use magit-insert-heading's new CHILD-COUNT argument
Diffstat (limited to 'lisp/magit-bisect.el')
| -rw-r--r-- | lisp/magit-bisect.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/magit-bisect.el b/lisp/magit-bisect.el index 805b68b..47095de 100644 --- a/lisp/magit-bisect.el +++ b/lisp/magit-bisect.el @@ -274,7 +274,7 @@ bisect run'." "While bisecting, insert section visualizing the bisect state." (when (magit-bisect-in-progress-p) (magit-insert-section (bisect-view) - (magit-insert-heading "Bisect Rest:") + (magit-insert-heading t "Bisect Rest") (magit-git-wash (apply-partially #'magit-log-wash-log 'bisect-vis) "bisect" "visualize" "git" "log" "--format=%h%x00%D%x00%s" "--decorate=full" @@ -286,7 +286,7 @@ bisect run'." "While bisecting, insert section logging bisect progress." (when (magit-bisect-in-progress-p) (magit-insert-section (bisect-log) - (magit-insert-heading "Bisect Log:") + (magit-insert-heading t "Bisect Log") (magit-git-wash #'magit-wash-bisect-log "bisect" "log") (insert ?\n)))) |
