# HG changeset patch # User Matthew Wild # Date 1343317578 -3600 # Node ID eb8211b65e96206996bb1e2b1f2566dbff6422f0 # Parent a6bae9d72c8fe025ef959588e9fbb5d0fb4a4cfb net.server_event: Replace usage of string.len() with # operator diff -r a6bae9d72c8f -r eb8211b65e96 net/server_event.lua --- a/net/server_event.lua Thu Jul 26 15:16:52 2012 +0100 +++ b/net/server_event.lua Thu Jul 26 16:46:18 2012 +0100 @@ -115,7 +115,6 @@ local addevent = base.addevent local coroutine_wrap, coroutine_yield = coroutine.wrap,coroutine.yield - local string_len = string.len -- Private methods function interface_mt:_position(new_position) @@ -310,7 +309,7 @@ if self.nowriting then return nil, "locked" end --vdebug( "try to send data to client, id/data:", self.id, data ) data = tostring( data ) - local len = string_len( data ) + local len = #data local total = len + self.writebufferlen if total > cfg.MAX_SEND_LENGTH then -- check buffer length local err = "send buffer exceeded"