]> git.madduck.net Git - etc/awesome.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

src/timetable: Fix month incrementing
authordaurnimator <quae@daurnimator.com>
Fri, 30 Aug 2013 19:44:59 +0000 (15:44 -0400)
committerdaurnimator <quae@daurnimator.com>
Fri, 30 Aug 2013 19:44:59 +0000 (15:44 -0400)
src/timetable.lua

index d1cd534a624f8c8653929b72dd556e1966601027..3b3b2ed89c1205a6abf4099d7f25f6a2f8802a65 100644 (file)
@@ -21,7 +21,6 @@ local function year_length ( y )
 end
 
 local function month_length ( m , y )
-       m = ( m - 1 ) % 12 + 1
        if m == 2 then
                return is_leap ( y ) and 29 or 28
        else
@@ -91,18 +90,23 @@ local function normalise ( year , month , day , hour , min , sec )
                day  = day + year_length ( year )
        end
 
+       -- Lua months start from 1, need -1 and +1 around this increment
+       month = month - 1
+       year , month = increment ( year , month , 12 )
+       month = month + 1
+
        -- This could potentially be slow if `day` is very large
        while true do
                local i = month_length ( month , year )
                if day <= i then break end
                day = day - i
                month = month + 1
+               if month > 12 then
+                       month = 1
+                       year = year + 1
+               end
        end
 
-       -- Lua months start from 1, need -1 and +1 around this increment
-       year , month = increment ( year , month - 1 , 12 )
-       month = month + 1
-
        return year , month , day , hour , min , sec
 end