From cb3809ada870625ccbba286a35f2aabb735658d8 Mon Sep 17 00:00:00 2001 From: Timothee Cour Date: Thu, 7 Feb 2019 13:36:35 -0800 Subject: [PATCH] allow user config to set foreignPackageNotes; `system module needs` can now show a stacktrace + instantiated from with --stacktrace:on + --hint:ExtendedContext:on --- compiler/commands.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/commands.nim b/compiler/commands.nim index af775f5cd2dd..a7cb8509d642 100644 --- a/compiler/commands.nim +++ b/compiler/commands.nim @@ -201,6 +201,7 @@ proc processSpecificNote*(arg: string, state: TSpecialWord, pass: TCmdLinePass, incl(conf.notes, n) incl(conf.mainPackageNotes, n) incl(conf.enableNotes, n) + incl(conf.foreignPackageNotes, n) of "off": excl(conf.notes, n) excl(conf.mainPackageNotes, n)