From c12726d41e7df20bce452b6d7f8959d8b9e401a9 Mon Sep 17 00:00:00 2001 From: andri lim Date: Tue, 22 May 2018 18:17:09 +0700 Subject: [PATCH] fixes #7696, add ConfigRef.arguments initialization (#7858) --- compiler/options.nim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/options.nim b/compiler/options.nim index 2027897fa4..1c4bb6157d 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):