diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-11-12 14:02:55 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-11-12 14:04:04 -0800 |
| commit | a675104c399d242dd3ff5a0823fcd770563cf60f (patch) | |
| tree | d4e1ffae50c2d596a5053fbb8b2bfada1c752a25 /diff.h | |
| parent | 3a4eb5ad2e9166255d5921196470710523f24ec4 (diff) | |
| download | git-a675104c399d242dd3ff5a0823fcd770563cf60f.tar.gz | |
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>
Diffstat (limited to 'diff.h')
| -rw-r--r-- | diff.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |
