Skip to content

Commit

Permalink
chore(date): fix warning
Browse files Browse the repository at this point in the history
the call `setz(c, x)` would pass 2 arguments, the TZ offset, and
TZ abreviated name. WHere only the offset would be used. Hence it is
safe to remove the `x` parameter from the call.

Fixes #30
  • Loading branch information
Tieske committed Sep 6, 2023
1 parent e309741 commit 32ac69f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/date.lua
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@
local is, ie; is, ie, self[1], self[2], self[3], self[4], self[5] = find(self.s, s, self.i)
if is then self.e, self.i = self.i, 1+ie; if f then f(unpack(self)) end return self end
end
local function date_parse(str)
local function date_parse(str)
local y,m,d, h,r,s, z, w,u, j, e, x,c, dn,df
local sw = newstrwalker(gsub(gsub(str, "(%b())", ""),"^(%s*)","")) -- remove comment, trim leading space
--local function error_out() print(y,m,d,h,r,s) end
Expand Down Expand Up @@ -343,7 +343,7 @@
setm(mod(sw[0],12)+1)
elseif inlist(x, sl_timezone, 2, sw) then
c = fix(sw[0]) -- ignore gmt and utc
if c ~= 0 then setz(c, x) end
if c ~= 0 then setz(c) end
elseif not inlist(x, sl_weekdays, 2, sw) then
sw:back()
-- am pm bce ad ce bc
Expand Down

0 comments on commit 32ac69f

Please sign in to comment.