1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 04:11:21 +00:00

Fixes alignments of --help page.

This commit is contained in:
FellippeHeitor 2020-01-09 12:00:14 -03:00
parent 204a241d34
commit 2309d05ff8

View file

@ -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 <output file> Write output executable to <output file>"
PRINT " -o <output file> Write output executable to <output file>"
PRINT " -e Enables OPTION _EXPLICIT, making variable declaration"
PRINT " mandatory (per-compilation; doesn't affect the"
PRINT " source file or global settings)"