diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-12-14 20:03:12 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-12-14 20:03:12 +0100 |
commit | f76bd06643d0b8ee4de18808eb73d78e9aa91270 (patch) | |
tree | 819e095d7c3b39a4a0b5e9540457d1d0080a5d0d | |
parent | 5ba22c9315a46a281baa2baf5a3ab4abdfcc4a33 (diff) | |
download | Nim-f76bd06643d0b8ee4de18808eb73d78e9aa91270.tar.gz |
fixes #9982
-rw-r--r-- | compiler/options.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index 52c7d88cd..7e853d646 100644 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -282,7 +282,7 @@ proc mergeConfigs*(dest, src: ConfigRef) = m globalOptions m cmd m selectedGC - m verbosity + dest.verbosity = src.verbosity m numberOfProcessors m evalExpr m symbolFiles |