From 2309d05ff801114e7d15edfa85ccffca589beac6 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Thu, 9 Jan 2020 12:00:14 -0300 Subject: [PATCH] Fixes alignments of --help page. --- source/qb64.bas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/qb64.bas b/source/qb64.bas index cab2ff2dc..f4b81f67c 100644 --- a/source/qb64.bas +++ b/source/qb64.bas @@ -12946,7 +12946,7 @@ FUNCTION ParseCMDLineArgs$ () 'in which case they're simply asking for trouble). FOR i = 1 TO _COMMANDCOUNT token$ = COMMAND$(i) - IF LCASE$(token$) = "-help" OR LCASE$(token$) = "--help" OR LCASE$(token$) = "-h" OR LCASE$(token$) = "/help" THEN token$ = "-?" + IF LCASE$(token$) = "/?" OR LCASE$(token$) = "--help" OR LCASE$(token$) = "/help" THEN token$ = "-?" SELECT CASE LCASE$(LEFT$(token$, 2)) CASE "-?" 'Command-line help _DEST _CONSOLE @@ -12962,7 +12962,7 @@ FUNCTION ParseCMDLineArgs$ () PRINT " console" PRINT " -p Purge all pre-compiled content first" PRINT " -z Generate C code without compiling to executable" - PRINT " -o Write output executable to " + PRINT " -o Write output executable to " PRINT " -e Enables OPTION _EXPLICIT, making variable declaration" PRINT " mandatory (per-compilation; doesn't affect the" PRINT " source file or global settings)"