https://github.com/git/git
Revision 19d6eb412cd6f47960737dd66bf1d1866e26986f authored by Jason St. John on 15 November 2013, 01:34:02 UTC, committed by Junio C Hamano on 18 November 2013, 21:38:43 UTC
Various fixes:

 - fix typos (e.g. "show" -> "shown")
 - use "regular expression(s)" instead of "regexp" where appropriate
 - reword some sentences for easier reading
 - fix/improve some grammatical issues (e.g. comma usage)
 - add missing articles (e.g. "the")
 - change "E-mail" to "email"

Signed-off-by: Jason St. John <jstjohn@purdue.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 4528aa1
Raw File
Tip revision: 19d6eb412cd6f47960737dd66bf1d1866e26986f authored by Jason St. John on 15 November 2013, 01:34:02 UTC
Documentation/rev-list-options.txt: fix some grammatical issues and typos
Tip revision: 19d6eb4
bisect.h
#ifndef BISECT_H
#define BISECT_H

extern struct commit_list *find_bisection(struct commit_list *list,
					  int *reaches, int *all,
					  int find_all);

extern struct commit_list *filter_skipped(struct commit_list *list,
					  struct commit_list **tried,
					  int show_all,
					  int *count,
					  int *skipped_first);

#define BISECT_SHOW_ALL		(1<<0)
#define REV_LIST_QUIET		(1<<1)

struct rev_list_info {
	struct rev_info *revs;
	int flags;
	int show_timestamp;
	int hdr_termination;
	const char *header_prefix;
};

extern int bisect_next_all(const char *prefix, int no_checkout);

extern int estimate_bisect_steps(int all);

#endif
back to top