diff options
author | andri lim <jangko128@gmail.com> | 2018-05-22 18:17:09 +0700 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-05-22 13:17:09 +0200 |
commit | c12726d41e7df20bce452b6d7f8959d8b9e401a9 (patch) | |
tree | 808222c859392bb8db69d351c259c865fa776698 /compiler | |
parent | a39b989ce238546eca64e9c37734bc48f61e280c (diff) | |
download | Nim-c12726d41e7df20bce452b6d7f8959d8b9e401a9.tar.gz |
fixes #7696, add ConfigRef.arguments initialization (#7858)
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/options.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index 2027897fa..1c4bb6157 100644 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -221,7 +221,8 @@ proc newConfigRef*(): ConfigRef = keepComments: true, # whether the parser needs to keep comments implicitImports: @[], # modules that are to be implicitly imported implicitIncludes: @[], # modules that are to be implicitly included - docSeeSrcUrl: "" + docSeeSrcUrl: "", + arguments: "" ) # enable colors by default on terminals if terminal.isatty(stderr): |