From c6b05376d4dcd1074f855cbedb3c6b1ca11237d6 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Sat, 2 Jul 2016 21:24:22 -0300 Subject: [PATCH] Minor rewording to command line help --- source/global/version.bas | 2 +- source/qb64.bas | 12 ++++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/source/global/version.bas b/source/global/version.bas index 461430ee2..86713bc19 100644 --- a/source/global/version.bas +++ b/source/global/version.bas @@ -3,5 +3,5 @@ DIM SHARED BuildNum AS STRING Version$ = "1.000" 'BuildNum format is YYYYMMDD/id, where id is a ever-increasing 'integer. If you make a change, update the date and increase the id! -BuildNum$ = "20160702/31" +BuildNum$ = "20160702/32" diff --git a/source/qb64.bas b/source/qb64.bas index 2d6bdc579..d4ab6e81d 100644 --- a/source/qb64.bas +++ b/source/qb64.bas @@ -12312,13 +12312,17 @@ FUNCTION ParseCMDLineArgs$ () PRINT "USAGE: qb64 [switches] " PRINT PRINT "OPTIONS:" - PRINT " Source file to load" + PRINT " Source file to load" ' '80 columns PRINT " -c Compile instead of edit" - PRINT " -x Compile instead of edit and output the result to the console" + PRINT " -x Compile instead of edit and output the result to the" + PRINT " console" PRINT " -z Generate C code without compiling to executable" - 'PRINT " -g Non-GUI environment (uses $CONSOLE:ONLY - for G-WAN compilation)" + 'PRINT " -g Non-GUI environment (uses $CONSOLE:ONLY - for G-WAN" + 'PRINT " compilation)" PRINT " -o Write output executable to " - PRINT " -e Enables OPTION _EXPLICIT, making variable declaration mandatory (per-compilation; doesn't affect the source file or global settings)" + PRINT " -e Enables OPTION _EXPLICIT, making variable declaration" + PRINT " mandatory (per-compilation; doesn't affect the" + PRINT " source file or global settings)" PRINT " -s[:switch=true/false] View/edit compiler settings" PRINT SYSTEM