Remove unnecessary boxes parameter for max width. - tgtimes - The Gopher Times | |
git clone git://bitreich.org/tgtimes git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
commit 56b6d45ee3625145bbb60feb4cdea7429209da0d | |
parent a37c92e47e381689629d06a2aa7b6db53db390df | |
Author: Christoph Lohmann <[email protected]> | |
Date: Tue, 8 Aug 2023 16:52:50 +0200 | |
Remove unnecessary boxes parameter for max width. | |
Diffstat: | |
M Makefile | 4 ++-- | |
1 file changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -15,7 +15,7 @@ mdptxtfiles=${mdfiles:.md=.ptxt} | |
| ./filters/markdown.filter \ | |
| fold -s \ | |
| { \ | |
- boxes -d boxquote -p a1 -s80x; \ | |
+ boxes -d boxquote -p a1; \ | |
printf "\n"; \ | |
} \ | |
| ./filters/title-boxes.filter > $<.ptxt | |
@@ -26,7 +26,7 @@ txtptxtfiles=${txtfiles:.txt=.ptxt} | |
cat $< \ | |
| fold -s \ | |
| { \ | |
- boxes -d boxquote -p a1 -s80x; \ | |
+ boxes -d boxquote -p a1; \ | |
printf "\n"; \ | |
} \ | |
| ./filters/title-boxes.filter > $<.ptxt |