diff --git a/bin/text2page b/bin/text2page index a8b9110..f0b2966 100755 Binary files a/bin/text2page and b/bin/text2page differ diff --git a/bin/text2page.exe b/bin/text2page.exe index b74c2c9..d1ee349 100755 Binary files a/bin/text2page.exe and b/bin/text2page.exe differ diff --git a/text2page.c b/text2page.c index a512831..e50929e 100644 --- a/text2page.c +++ b/text2page.c @@ -33,9 +33,9 @@ int main() while((c = getchar()) != EOF) { if(c == '\r') // windows trash continue; - if(columns > 40) // user didn't read the docs + if(columns > 39) // user didn't read the docs continue; - if(lines > 24) // ditto + if(lines > 23) // ditto break; if(c == '\n') { // end of line columns=0;