diff --git a/qb64.1 b/qb64.1 index 809045912..a83bc828e 100644 --- a/qb64.1 +++ b/qb64.1 @@ -1,15 +1,18 @@ -.TH qb64 "1" "November 2018" "QB64 IDE COMPILER" "User Commands" +.TH qb64 "1" "November 2018" "QB64 IDE AND COMPILER" "User Commands" .SH NAME qb64 \- manual page for QB64 .SH DESCRIPTION QB64 COMPILER .PP -USAGE: qb64 [switches] +USAGE: qb64 [switches] .SS "OPTIONS:" .TP Source file to load .TP +\fB\-v\fR +Verbose mode (detailed warnings) +.TP \fB\-c\fR Compile instead of edit .TP @@ -23,8 +26,8 @@ Purge all pre\-compiled content first \fB\-z\fR Generate C code without compiling to executable .TP -\fB\-o\fR -Write output executable to +\fB\-o\fR +Write output executable to .TP \fB\-e\fR Enables OPTION _EXPLICIT, making variable declaration @@ -38,4 +41,4 @@ View/edit compiler settings Starts the IDE at the specified line number .PP .SH "INTERNET" -.B http://qb64.org/ +.B https://qb64.org/ diff --git a/source/qb64.bas b/source/qb64.bas index db2d0a9ee..094cbf6b1 100644 --- a/source/qb64.bas +++ b/source/qb64.bas @@ -12777,7 +12777,7 @@ FUNCTION ParseCMDLineArgs$ () _DEST _CONSOLE PRINT "QB64 COMPILER V" + Version$ PRINT - PRINT "USAGE: qb64 [switches] " + PRINT "USAGE: qb64 [switches] " PRINT PRINT "OPTIONS:" PRINT " Source file to load" ' '80 columns @@ -12787,7 +12787,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)"