diff options
Diffstat (limited to 'compiler/docgen.nim')
-rw-r--r-- | compiler/docgen.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/docgen.nim b/compiler/docgen.nim index 207294597..d1e2d42c5 100644 --- a/compiler/docgen.nim +++ b/compiler/docgen.nim @@ -47,7 +47,6 @@ type exampleCounter: int emitted: IntSet # we need to track which symbols have been emitted # already. See bug #3655 - destFile*: AbsoluteFile thisDir*: AbsoluteDir exampleGroups: OrderedTable[string, ExampleGroup] wroteSupportFiles*: bool @@ -179,6 +178,7 @@ proc newDocumentor*(filename: AbsoluteFile; cache: IdentCache; conf: ConfigRef, result.module = module result.conf = conf result.cache = cache + result.outDir = conf.outDir initRstGenerator(result[], (if conf.cmd != cmdRst2tex: outHtml else: outLatex), conf.configVars, filename.string, {roSupportRawDirective, roSupportMarkdown}, docgenFindFile, compilerMsgHandler) @@ -1366,4 +1366,3 @@ proc commandBuildIndex*(conf: ConfigRef, dir: string, outFile = RelativeFile"") if not writeRope(code, filename): rawMessage(conf, errCannotOpenFile, filename.string) - |