fixes ropes.nim regression; make tests green again

This commit is contained in:
Andreas Rumpf
2017-11-06 19:25:28 +01:00
parent 87a46765ee
commit 2d892caba8

View File

@@ -243,7 +243,7 @@ proc write*(f: File, r: Rope) {.rtl, extern: "nro$1".} =
## writes a rope to a file.
for s in leaves(r): write(f, s)
proc write*(s: Stream, r: Rope) {.rtl, extern: "nro$1".} =
proc write*(s: Stream, r: Rope) {.rtl, extern: "nroWriteStream".} =
## writes a rope to a stream.
for rs in leaves(r): write(s, rs)