We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents efa0d64 + 1ba7c32 commit a5644b8Copy full SHA for a5644b8
include/git2/diff.h
@@ -133,6 +133,9 @@ typedef enum {
133
*/
134
GIT_DIFF_INDENT_HEURISTIC = (1u << 18),
135
136
+ /** Ignore blank lines */
137
+ GIT_DIFF_IGNORE_BLANK_LINES = (1u << 19),
138
+
139
/** Treat all files as text, disabling binary attributes & detection */
140
GIT_DIFF_FORCE_TEXT = (1u << 20),
141
/** Treat all files as binary, disabling text diffs */
@@ -168,10 +171,6 @@ typedef enum {
168
171
* can apply given diff information to binary files.
169
172
170
173
GIT_DIFF_SHOW_BINARY = (1u << 30),
-
- /** Ignore blank lines */
- GIT_DIFF_IGNORE_BLANK_LINES = (1u << 31),
174
175
} git_diff_option_t;
176
177
/**
0 commit comments