Skip to content

Commit bdc2dbb

Browse files
committed
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>
1 parent c66b547 commit bdc2dbb

File tree

5 files changed

+21
-12
lines changed

5 files changed

+21
-12
lines changed

Documentation/config/core.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -626,6 +626,8 @@ core.whitespace::
626626
part of the line terminator, i.e. with it, `trailing-space`
627627
does not trigger if the character before such a carriage-return
628628
is not a whitespace (not enabled by default).
629+
* `incomplete-line` treats the last line of a file that is missing the
630+
newline at the end as an error (not enabled by default).
629631
* `tabwidth=<n>` tells how many character positions a tab occupies; this
630632
is relevant for `indent-with-non-tab` and when Git fixes `tab-in-indent`
631633
errors. The default tab width is 8. Allowed values are 1 to 63.

diff.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -804,15 +804,15 @@ enum diff_symbol {
804804

805805
/*
806806
* Flags for content lines:
807-
* 0..11 are whitespace rules (see ws.h)
808-
* 12..14 are WSEH_NEW | WSEH_CONTEXT | WSEH_OLD
809-
* 16 is marking if the line is blank at EOF
810-
* 17..19 are used for color-moved.
807+
* 0..15 are whitespace rules (see ws.h)
808+
* 16..18 are WSEH_NEW | WSEH_CONTEXT | WSEH_OLD
809+
* 19 is marking if the line is blank at EOF
810+
* 20..22 are used for color-moved.
811811
*/
812-
#define DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF (1<<16)
813-
#define DIFF_SYMBOL_MOVED_LINE (1<<17)
814-
#define DIFF_SYMBOL_MOVED_LINE_ALT (1<<18)
815-
#define DIFF_SYMBOL_MOVED_LINE_UNINTERESTING (1<<19)
812+
#define DIFF_SYMBOL_CONTENT_BLANK_LINE_EOF (1<<19)
813+
#define DIFF_SYMBOL_MOVED_LINE (1<<20)
814+
#define DIFF_SYMBOL_MOVED_LINE_ALT (1<<21)
815+
#define DIFF_SYMBOL_MOVED_LINE_UNINTERESTING (1<<22)
816816

817817
#define DIFF_SYMBOL_CONTENT_WS_MASK (WSEH_NEW | WSEH_OLD | WSEH_CONTEXT | WS_RULE_MASK)
818818

diff.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -331,9 +331,9 @@ struct diff_options {
331331

332332
int ita_invisible_in_index;
333333
/* white-space error highlighting */
334-
#define WSEH_NEW (1<<12)
335-
#define WSEH_CONTEXT (1<<13)
336-
#define WSEH_OLD (1<<14)
334+
#define WSEH_NEW (1<<16)
335+
#define WSEH_CONTEXT (1<<17)
336+
#define WSEH_OLD (1<<18)
337337
unsigned ws_error_highlight;
338338
const char *prefix;
339339
int prefix_length;

ws.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ static struct whitespace_rule {
2626
{ "blank-at-eol", WS_BLANK_AT_EOL, 0 },
2727
{ "blank-at-eof", WS_BLANK_AT_EOF, 0 },
2828
{ "tab-in-indent", WS_TAB_IN_INDENT, 0, 1 },
29+
{ "incomplete-line", WS_INCOMPLETE_LINE, 0, 0 },
2930
};
3031

3132
unsigned parse_whitespace_rule(const char *string)
@@ -139,6 +140,11 @@ char *whitespace_error_string(unsigned ws)
139140
strbuf_addstr(&err, ", ");
140141
strbuf_addstr(&err, "tab in indent");
141142
}
143+
if (ws & WS_INCOMPLETE_LINE) {
144+
if (err.len)
145+
strbuf_addstr(&err, ", ");
146+
strbuf_addstr(&err, "no newline at the end of file");
147+
}
142148
return strbuf_detach(&err, NULL);
143149
}
144150

ws.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ struct strbuf;
1515
#define WS_CR_AT_EOL (1<<9)
1616
#define WS_BLANK_AT_EOF (1<<10)
1717
#define WS_TAB_IN_INDENT (1<<11)
18+
#define WS_INCOMPLETE_LINE (1<<12)
1819

1920
#define WS_TRAILING_SPACE (WS_BLANK_AT_EOL|WS_BLANK_AT_EOF)
2021
#define WS_DEFAULT_RULE (WS_TRAILING_SPACE|WS_SPACE_BEFORE_TAB|8)
2122
#define WS_TAB_WIDTH_MASK ((1<<6)-1)
2223

2324
/* All WS_* -- when extended, adapt constants defined after diff.c:diff_symbol */
24-
#define WS_RULE_MASK ((1<<12)-1)
25+
#define WS_RULE_MASK ((1<<16)-1)
2526

2627
extern unsigned whitespace_rule_cfg;
2728
unsigned whitespace_rule(struct index_state *, const char *);

0 commit comments

Comments
 (0)