summary refs log tree commit diff stats
path: root/lib/system
diff options
context:
space:
mode:
authorpatrick dw <algorithicimperative@gmail.com>2015-06-19 01:02:22 -0500
committerpatrick dw <algorithicimperative@gmail.com>2015-06-19 01:02:22 -0500
commit15e7fe787a2bf89b82aeba965ed4fd8b200dca1a (patch)
treea23d002fa90f66c98b80db84e3de2d8a19365316 /lib/system
parent072688d06ebe757993f4a17e51e5e74145eb65fd (diff)
downloadNim-15e7fe787a2bf89b82aeba965ed4fd8b200dca1a.tar.gz
renamed writeln to writeLine in lib
Diffstat (limited to 'lib/system')
-rw-r--r--lib/system/endb.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/system/endb.nim b/lib/system/endb.nim
index ef2664796..cba11ac5e 100644
--- a/lib/system/endb.nim
+++ b/lib/system/endb.nim
@@ -117,7 +117,7 @@ proc dbgRepr(p: pointer, typ: PNimType): string =
 proc writeVariable(stream: File, slot: VarSlot) =
   write(stream, slot.name)
   write(stream, " = ")
-  writeln(stream, dbgRepr(slot.address, slot.typ))
+  writeLine(stream, dbgRepr(slot.address, slot.typ))
 
 proc listFrame(stream: File, f: PFrame) =
   write(stream, EndbBeg)
@@ -125,7 +125,7 @@ proc listFrame(stream: File, f: PFrame) =
   write(stream, f.len)
   write(stream, " slots):\n")
   for i in 0 .. f.len-1:
-    writeln(stream, getLocal(f, i).name)
+    writeLine(stream, getLocal(f, i).name)
   write(stream, EndbEnd)
 
 proc listLocals(stream: File, f: PFrame) =
@@ -141,7 +141,7 @@ proc listGlobals(stream: File) =
   write(stream, EndbBeg)
   write(stream, "| Globals:\n")
   for i in 0 .. getGlobalLen()-1:
-    writeln(stream, getGlobal(i).name)
+    writeLine(stream, getGlobal(i).name)
   write(stream, EndbEnd)
 
 proc debugOut(msg: cstring) =