]> 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:

tzinfo: Remove unused argument
authordaurnimator <quae@daurnimator.com>
Sat, 23 Nov 2013 15:38:42 +0000 (10:38 -0500)
committerdaurnimator <quae@daurnimator.com>
Sat, 23 Nov 2013 15:38:42 +0000 (10:38 -0500)
luatz/tzinfo.lua

index 34b704881ff9739e543ffdb100a3e3ae48aed52b..fd3f5e8b88d52339f6054ccd7c6e6b34a9dcb881 100644 (file)
@@ -60,7 +60,7 @@ function tz_info_methods:localize ( utc_ts )
        return utc_ts + self:find_current ( utc_ts ).gmtoff
 end
 
-function tz_info_methods:utctime ( ts_local , is_dst )
+function tz_info_methods:utctime ( ts_local )
        local tz1 , tz2 = find_current_local ( self , ts_local )
        tz1 = self [ tz1 ].info
        if tz2 == nil then