summaryrefslogtreecommitdiff
path: root/bisect.h
diff options
context:
space:
mode:
Diffstat (limited to 'bisect.h')
-rw-r--r--bisect.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/bisect.h b/bisect.h
index c921ead..19d90e4 100644
--- a/bisect.h
+++ b/bisect.h
@@ -37,10 +37,13 @@ struct rev_list_info {
* commit has been found (and possibly checked out) and it
* should be tested.
* BISECT_FAILED error code: default error code.
+ * BISECT_ONLY_SKIPPED_LEFT error code: only skipped
+ * commits left to be tested.
*/
enum bisect_error {
BISECT_OK = 0,
- BISECT_FAILED = -1
+ BISECT_FAILED = -1,
+ BISECT_ONLY_SKIPPED_LEFT = -2
};
enum bisect_error bisect_next_all(struct repository *r,