1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: add a missing space
Author: Stefan Marx <marxst@users.noreply.github.com>
Origin: https://github.com/mvertes/txt2man/commit/58fa2519d9b0387031be325a15c2b07054a48651
Bug: https://github.com/mvertes/txt2man/issues/13
Reviewed-By: Joao Eriberto Mota Filho <eriberto@debian.org>
Last-Update: 2019-01-31
Index: txt2man/bookman
===================================================================
--- txt2man.orig/bookman
+++ txt2man/bookman
@@ -110,7 +110,7 @@ date=${date:-$(date +'%d %B %Y')}
for f
do
case $f in
- (*.Z|*.gz) zcat$f;;
+ (*.Z|*.gz) zcat $f;;
(*.bz2) bzcat $f;;
(*) cat $f;;
esac
|