From 97d2df9bac34e01cb3a847909d76a60d8cc085db Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Sun, 29 Mar 2015 11:59:30 +0800 Subject: [PATCH] compiler_ropes: ropeLen -> len --- compiler/ropes.nim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/ropes.nim b/compiler/ropes.nim index ae71234c44..4194ced954 100644 --- a/compiler/ropes.nim +++ b/compiler/ropes.nim @@ -86,7 +86,6 @@ proc app*(a: var PRope, b: string) proc prepend*(a: var PRope, b: PRope) proc toRope*(s: string): PRope proc toRope*(i: BiggestInt): PRope -proc ropeLen*(a: PRope): int proc writeRopeIfNotEqual*(r: PRope, filename: string): bool proc ropeToStr*(p: PRope): string proc ropef*(frmt: TFormatStr, args: varargs[PRope]): PRope @@ -100,7 +99,7 @@ proc ropeInvariant*(r: PRope): bool var errorHandler*: proc(err: TRopesError, msg: string, useWarning = false) # avoid dependency on msgs.nim -proc ropeLen(a: PRope): int = +proc len*(a: PRope): int = if a == nil: result = 0 else: result = a.length