diff options
| author | Junio C Hamano <gitster@pobox.com> | 2008-09-10 02:14:18 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2008-09-10 02:14:18 -0700 |
| commit | 26c10c7ad39357bd94129c3949fed67c39302b0f (patch) | |
| tree | 88ffbda22c14a4fd3778623ee31afeb09915e71f /diff.c | |
| parent | Merge branch 'jc/maint-checkout-fix' into maint (diff) | |
| parent | diff: Help "less" hide ^M from the output (diff) | |
| download | git-26c10c7ad39357bd94129c3949fed67c39302b0f.tar.gz git-26c10c7ad39357bd94129c3949fed67c39302b0f.zip | |
Merge branch 'jc/maint-hide-cr-in-diff-from-less' into maint
* jc/maint-hide-cr-in-diff-from-less:
diff: Help "less" hide ^M from the output
Diffstat (limited to 'diff.c')
| -rw-r--r-- | diff.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -511,13 +511,20 @@ const char *diff_get_color(int diff_use_color, enum color_diff ix) static void emit_line(FILE *file, const char *set, const char *reset, const char *line, int len) { - int has_trailing_newline = (len > 0 && line[len-1] == '\n'); + int has_trailing_newline, has_trailing_carriage_return; + + has_trailing_newline = (len > 0 && line[len-1] == '\n'); if (has_trailing_newline) len--; + has_trailing_carriage_return = (len > 0 && line[len-1] == '\r'); + if (has_trailing_carriage_return) + len--; fputs(set, file); fwrite(line, len, 1, file); fputs(reset, file); + if (has_trailing_carriage_return) + fputc('\r', file); if (has_trailing_newline) fputc('\n', file); } |
