diff options
Diffstat (limited to 'rod/main.nim')
-rwxr-xr-x | rod/main.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rod/main.nim b/rod/main.nim index 55ac32caa..2ec65be58 100755 --- a/rod/main.nim +++ b/rod/main.nim @@ -254,7 +254,7 @@ proc MainCommand(cmd, filename: string) = of wDump: gCmd = cmdDump condsyms.ListSymbols() - for it in iterSearchPath(): MessageOut(it) + for it in iterSearchPath(): MsgWriteln(it) of wCheck: gCmd = cmdCheck wantFile(filename) @@ -267,7 +267,7 @@ proc MainCommand(cmd, filename: string) = gCmd = cmdScan wantFile(filename) CommandScan(filename) - MessageOut("Beware: Indentation tokens depend on the parser\'s state!") + MsgWriteln("Beware: Indentation tokens depend on the parser\'s state!") of wI: gCmd = cmdInteractive CommandInteractive() |