From 3ba42db186fcd8e310f0182ee344b638809fc779 Mon Sep 17 00:00:00 2001
From: Geir Hauge <geir.hauge@gmail.com>
Date: Mon, 5 Aug 2013 22:44:13 +0200
Subject: [PATCH 5/5] Empty string translation

---
 builtins/help.def |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/builtins/help.def b/builtins/help.def
index 7cf2608..04f4686 100644
--- a/builtins/help.def
+++ b/builtins/help.def
@@ -211,7 +211,10 @@ show_longdoc (i)
     }
   else if (doc)
     for (j = 0; doc[j]; j++)
-      printf ("%*s%s\n", BASE_INDENT, " ", _(doc[j]));
+      if (doc[j][0])
+	printf ("%*s%s\n", BASE_INDENT, " ", _(doc[j]));
+      else
+	printf("%*s\n", BASE_INDENT, " ");
 }
 
 static void
-- 
1.7.9.5

