diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-06-27 00:36:59 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-06-27 07:07:26 +0200 |
commit | 877f23ccb88227203f2576abdfb5d1c15925fcb3 (patch) | |
tree | 6d54619f825b9e489f90928f9f7af670cc0a4cb8 /cache.h | |
parent | checkdiff: pass diff_options to the callback (diff) | |
download | git-877f23ccb88227203f2576abdfb5d1c15925fcb3.tar.xz git-877f23ccb88227203f2576abdfb5d1c15925fcb3.zip |
Teach "diff --check" about new blank lines at end
When a patch adds new blank lines at the end, "git apply --whitespace"
warns. This teaches "diff --check" to do the same.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -823,6 +823,7 @@ extern unsigned ws_check(const char *line, int len, unsigned ws_rule); extern void ws_check_emit(const char *line, int len, unsigned ws_rule, FILE *stream, const char *set, const char *reset, const char *ws); extern char *whitespace_error_string(unsigned ws); extern int ws_fix_copy(char *, const char *, int, unsigned, int *); +extern int ws_blank_line(const char *line, int len, unsigned ws_rule); /* ls-files */ int pathspec_match(const char **spec, char *matched, const char *filename, int skiplen); |