summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorandri lim <jangko128@gmail.com>2018-05-22 18:17:09 +0700
committerAndreas Rumpf <rumpf_a@web.de>2018-05-22 13:17:09 +0200
commitc12726d41e7df20bce452b6d7f8959d8b9e401a9 (patch)
tree808222c859392bb8db69d351c259c865fa776698 /compiler
parenta39b989ce238546eca64e9c37734bc48f61e280c (diff)
downloadNim-c12726d41e7df20bce452b6d7f8959d8b9e401a9.tar.gz
fixes #7696, add ConfigRef.arguments initialization (#7858)
Diffstat (limited to 'compiler')
-rw-r--r--compiler/options.nim3
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):