# HG changeset patch # User Kim Alvefur # Date 1583946423 -3600 # Node ID e531273341d3302549c12d23341887d5a1651017 # Parent 657e61531b33d9d341e963a6c5246c29465fd71d net.server_epoll: Fix indentation Some lines seem to have gotten the wrong indentation, possibly caused by Meld which often ignores lines with only whitespace changes and leaves their previous indentation. diff -r 657e61531b33 -r e531273341d3 net/server_epoll.lua --- a/net/server_epoll.lua Thu Feb 27 20:01:54 2020 +0100 +++ b/net/server_epoll.lua Wed Mar 11 18:07:03 2020 +0100 @@ -102,7 +102,7 @@ if peek > now then next_delay = peek - now; break; - end + end local _, timer, id = timers:pop(); local ok, ret = pcall(timer[2], now); @@ -110,10 +110,10 @@ local next_time = now+ret; timer[1] = next_time; timers:insert(timer, next_time); - end + end peek = timers:peek(); - end + end if peek == nil then return next_delay; end