summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2db511f)
raw | patch | inline | side by side (parent: 2db511f)
author | Junio C Hamano <gitster@pobox.com> | |
Tue, 26 Feb 2008 20:24:40 +0000 (12:24 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 26 Feb 2008 20:24:40 +0000 (12:24 -0800) |
When a patch adds a whitespace followed by end-of-line, the
trailing whitespace error was detected correctly but was not
fixed, due to misconversion in 42ab241 (builtin-apply.c: do not
feed copy_wsfix() leading '+').
Signed-off-by: Junio C Hamano <gitster@pobox.com>
trailing whitespace error was detected correctly but was not
fixed, due to misconversion in 42ab241 (builtin-apply.c: do not
feed copy_wsfix() leading '+').
Signed-off-by: Junio C Hamano <gitster@pobox.com>
ws.c | patch | blob | history |
index 522f646ed7f492a91ea288d03aabfcf5db69c196..ba7e834ca819b1d2ccce6cf125aa9f34efea8d5c 100644 (file)
--- a/ws.c
+++ b/ws.c
@@ -234,7 +234,7 @@ int ws_fix_copy(char *dst, const char *src, int len, unsigned ws_rule, int *erro
* Strip trailing whitespace
*/
if ((ws_rule & WS_TRAILING_SPACE) &&
- (2 < len && isspace(src[len-2]))) {
+ (2 <= len && isspace(src[len-2]))) {
if (src[len - 1] == '\n') {
add_nl_to_tail = 1;
len--;