File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,12 @@ typedef enum {
171171 * Options controlling how output will be generated
172172 */
173173
174+ /** Use a heuristic that takes indentation and whitespace into account
175+ * which generally can produce better diffs when dealing with ambiguous
176+ * diff hunks.
177+ */
178+ GIT_DIFF_INDENT_HEURISTIC = (1u << 18 ),
179+
174180 /** Treat all files as text, disabling binary attributes & detection */
175181 GIT_DIFF_FORCE_TEXT = (1u << 20 ),
176182 /** Treat all files as binary, disabling text diffs */
@@ -206,12 +212,6 @@ typedef enum {
206212 * can apply given diff information to binary files.
207213 */
208214 GIT_DIFF_SHOW_BINARY = (1u << 30 ),
209-
210- /** Use a heuristic that takes indentation and whitespace into account
211- * which generally can produce better diffs when dealing with ambiguous
212- * diff hunks.
213- */
214- GIT_DIFF_INDENT_HEURISTIC = (1u << 31 ),
215215} git_diff_option_t ;
216216
217217/**
You can’t perform that action at this time.
0 commit comments