summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBen Straub <bs@github.com>2013-10-10 14:53:07 -0700
committerBen Straub <bs@github.com>2013-10-10 14:53:07 -0700
commit364d800b018325914ac01cb5f1b06beb1cab528f (patch)
treea4d0d3081c7b6e010c0992ffb01c39bdc852506d /include
parent4fd847bb94b5bf8c1e4dce4e0c4798068977f916 (diff)
downloadlibgit2-364d800b018325914ac01cb5f1b06beb1cab528f.tar.gz
Move flag dependencies into docs and code.
Diffstat (limited to 'include')
-rw-r--r--include/git2/blame.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/git2/blame.h b/include/git2/blame.h
index fe51371ab..b98c6f0d7 100644
--- a/include/git2/blame.h
+++ b/include/git2/blame.h
@@ -33,13 +33,13 @@ typedef enum {
* NOT IMPLEMENTED. */
GIT_BLAME_TRACK_COPIES_SAME_COMMIT_MOVES = (1<<1),
/** Track lines that have been copied from another file that exists in the
- * same commit (like `git blame -CC`).
+ * same commit (like `git blame -CC`). Implies SAME_FILE.
* NOT IMPLEMENTED. */
- GIT_BLAME_TRACK_COPIES_SAME_COMMIT_COPIES = (1<<1 | 1<<2),
+ GIT_BLAME_TRACK_COPIES_SAME_COMMIT_COPIES = (1<<2),
/** Track lines that have been copied from another file that exists in *any*
- * commit (like `git blame -CCC`).
+ * commit (like `git blame -CCC`). Implies SAME_COMMIT_COPIES.
* NOT IMPLEMENTED. */
- GIT_BLAME_TRACK_COPIES_ANY_COMMIT_COPIES = (1<<1 | 1<<2 | 1<<3),
+ GIT_BLAME_TRACK_COPIES_ANY_COMMIT_COPIES = (1<<3),
} git_blame_flag_t;
/**