mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
fixes ropes.nim regression; make tests green again
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user