diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2016-12-29 14:06:27 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2016-12-29 14:06:27 +0100 |
| commit | a16174830fc1c317d128436a44c3a5f9f32bddda (patch) | |
| tree | dd1f0025f085533bd8185649501c2f99d8002c6c /lisp/magit-bisect.el | |
| parent | 8c42fe2803b47b17ba771a33413cf098a3e8aa99 (diff) | |
Split several libraries into more sections
Diffstat (limited to 'lisp/magit-bisect.el')
| -rw-r--r-- | lisp/magit-bisect.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/magit-bisect.el b/lisp/magit-bisect.el index 9757109..1c0aa0b 100644 --- a/lisp/magit-bisect.el +++ b/lisp/magit-bisect.el @@ -29,6 +29,8 @@ (require 'magit) +;;; Options + (defcustom magit-bisect-show-graph t "Whether to use `--graph' in the log showing commits yet to be bisected." :package-version '(magit . "2.8.0") @@ -50,6 +52,8 @@ "Face for bad bisect revisions." :group 'magit-faces) +;;; Commands + ;;;###autoload (autoload 'magit-bisect-popup "magit-bisect" nil t) (magit-define-popup magit-bisect-popup "Popup console for bisect commands." @@ -134,6 +138,8 @@ bisect run'." (magit-run-git-with-logfile (magit-git-dir "BISECT_CMD_OUTPUT") "bisect" subcommand args))) +;;; Sections + (defun magit-bisect-in-progress-p () (file-exists-p (magit-git-dir "BISECT_LOG"))) |
