Commit 35b1471f by Alan Rogers

Move the UNREADABLE enums to the correct group.

parent 4edd1a03
...@@ -152,6 +152,12 @@ typedef enum { ...@@ -152,6 +152,12 @@ typedef enum {
*/ */
GIT_DIFF_UPDATE_INDEX = (1u << 15), GIT_DIFF_UPDATE_INDEX = (1u << 15),
/** Include unreadable files in the diff */
GIT_DIFF_INCLUDE_UNREADABLE = (1u << 16),
/** Include unreadable files in the diff */
GIT_DIFF_INCLUDE_UNREADABLE_AS_UNTRACKED = (1u << 17),
/* /*
* Options controlling how output will be generated * Options controlling how output will be generated
*/ */
...@@ -191,12 +197,6 @@ typedef enum { ...@@ -191,12 +197,6 @@ typedef enum {
* can apply given diff information to binary files. * can apply given diff information to binary files.
*/ */
GIT_DIFF_SHOW_BINARY = (1 << 30), GIT_DIFF_SHOW_BINARY = (1 << 30),
/** Include unreadable files in the diff */
GIT_DIFF_INCLUDE_UNREADABLE = (1 << 27),
/** Include unreadable files in the diff */
GIT_DIFF_INCLUDE_UNREADABLE_AS_UNTRACKED = (1 << 31),
} git_diff_option_t; } git_diff_option_t;
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment