mirror of
https://github.com/git/git.git
synced 2026-06-24 08:48:31 +00:00
whitespace: allocate a few more bits and define WS_INCOMPLETE_LINE
Reserve a few more bits in the diff flags word to be used for future whitespace rules. Add WS_INCOMPLETE_LINE without implementing the behaviour (yet). Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
6
diff.h
6
diff.h
@@ -331,9 +331,9 @@ struct diff_options {
|
||||
|
||||
int ita_invisible_in_index;
|
||||
/* white-space error highlighting */
|
||||
#define WSEH_NEW (1<<12)
|
||||
#define WSEH_CONTEXT (1<<13)
|
||||
#define WSEH_OLD (1<<14)
|
||||
#define WSEH_NEW (1<<16)
|
||||
#define WSEH_CONTEXT (1<<17)
|
||||
#define WSEH_OLD (1<<18)
|
||||
unsigned ws_error_highlight;
|
||||
const char *prefix;
|
||||
int prefix_length;
|
||||
|
||||
Reference in New Issue
Block a user