Retain backwards compatibility after #16057 (#16068)

* Retain backwards compatibility

* Fix typo
This commit is contained in:
Clyybber
2020-11-20 14:11:41 +01:00
committed by GitHub
parent 1ad7e4f30b
commit 07ad608fb2

View File

@@ -84,3 +84,7 @@ proc loadConfigsAndProcessCmdLine*(self: NimProg, cache: IdentCache; conf: Confi
graph.suggestMode = self.suggestMode
return true
proc loadConfigsAndRunMainCommand*(self: NimProg, cache: IdentCache; conf: ConfigRef; graph: ModuleGraph): bool =
## Alias for loadConfigsAndProcessCmdLine, here for backwards compatibility
loadConfigsAndProcessCmdLine(self, cache, conf, graph)