Blame SOURCES/coreutils-i18n-fix-unexpand.patch

d3767b
From 02424bfcd719bbaa695f4e1c3ef17ad91b0d23c0 Mon Sep 17 00:00:00 2001
d3767b
From: Lubomir Rintel <lkundrak@v3.sk>
d3767b
Date: Thu, 28 Jan 2016 20:57:22 +0100
d3767b
Subject: [PATCH] unexpand: fix blank line handling
d3767b
d3767b
  echo '' |./src/unexpand -a
d3767b
d3767b
Really?
d3767b
---
d3767b
 src/unexpand.c | 2 +-
d3767b
 1 file changed, 1 insertion(+), 1 deletion(-)
d3767b
d3767b
diff --git a/src/unexpand.c b/src/unexpand.c
d3767b
index 569a7ee..3bbbd66 100644
d3767b
--- a/src/unexpand.c
d3767b
+++ b/src/unexpand.c
d3767b
@@ -233,7 +233,7 @@ unexpand (void)
d3767b
                   next_tab_column = column;
d3767b
                   tab_index -= !!tab_index;
d3767b
                 }
d3767b
-              else
d3767b
+              else if (!mb_iseq (c, '\n'))
d3767b
                 {
d3767b
                   column += mb_width (c);
d3767b
                   if (!column)
d3767b
-- 
d3767b
2.7.4
d3767b