From 4d9697c7871e513712eb9cfd30611049b10e5132 Mon Sep 17 00:00:00 2001 From: "J. Bruce Fields" Date: Sun, 16 Dec 2007 11:31:37 -0500 Subject: whitespace: fix off-by-one error in non-space-in-indent checking If there were no tabs, and the last space was at position 7, then positions 0..7 had spaces, so there were 8 spaces. Update test to check exactly this case. Signed-off-by: J. Bruce Fields Signed-off-by: Junio C Hamano --- ws.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ws.c') diff --git a/ws.c b/ws.c index 46cbdd6379..5ebd1095a2 100644 --- a/ws.c +++ b/ws.c @@ -159,7 +159,7 @@ unsigned check_and_emit_line(const char *line, int len, unsigned ws_rule, } /* Check for indent using non-tab. */ - if ((ws_rule & WS_INDENT_WITH_NON_TAB) && leading_space >= 8) + if ((ws_rule & WS_INDENT_WITH_NON_TAB) && leading_space >= 7) result |= WS_INDENT_WITH_NON_TAB; if (stream) { -- cgit v1.2.1