about summary refs log tree commit diff stats
path: root/filters/hldiff
diff options
context:
space:
mode:
Diffstat (limited to 'filters/hldiff')
-rwxr-xr-xfilters/hldiff6
1 files changed, 6 insertions, 0 deletions
diff --git a/filters/hldiff b/filters/hldiff
index a17f17b..64e95d2 100755
--- a/filters/hldiff
+++ b/filters/hldiff
@@ -10,6 +10,9 @@ BEGIN {
 }
 {
 	if (hit_diff == 0) {
+		# Strip carriage returns from line
+		gsub(/\r/, "", $0)
+
 		if ($0 ~ /^diff /) {
 			hit_diff = 1;
 			print bright $0 reset
@@ -23,6 +26,9 @@ BEGIN {
 			print $0
 		}
 	} else {
+		# Strip carriage returns from line
+		gsub(/\r/, "", $0)
+
 		if ($0 ~ /^-/) {
 			print red $0 reset
 		} else if ($0 ~ /^\+/) {