diff options
author | Jacek Sieka <arnetheduck@gmail.com> | 2019-03-04 03:49:56 -0600 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-03-04 10:49:55 +0100 |
commit | 7072e3ddca3ae794dd17e352279f70805278ba6d (patch) | |
tree | 6304d3c7df5560be6ed81c05ec1f05c6ed619036 /compiler/nim.nim | |
parent | 1d9b88f25d8c278123133773f83fd9ce81685bac (diff) | |
download | Nim-7072e3ddca3ae794dd17e352279f70805278ba6d.tar.gz |
doc: move specific checks to advanced options, for a less intimidatin… (#10779)
* doc: move specific checks to advanced options, for a less intimidating help * remove useless bool
Diffstat (limited to 'compiler/nim.nim')
-rw-r--r-- | compiler/nim.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nim.nim b/compiler/nim.nim index 5ca650789..982d0c7e5 100644 --- a/compiler/nim.nim +++ b/compiler/nim.nim @@ -68,7 +68,7 @@ proc handleCmdLine(cache: IdentCache; conf: ConfigRef) = ) self.initDefinesProg(conf, "nim_compiler") if paramCount() == 0: - writeCommandLineUsage(conf, conf.helpWritten) + writeCommandLineUsage(conf) return self.processCmdLineAndProjectPath(conf) |