# HG changeset patch # User John W. Eaton # Date 1251790299 -7200 # Node ID 295001bff26d55cd987fb3d07c314be2a235a692 # Parent 48a9c78cfbc94c37ced29ffd667ec06a50754bcb datestr: add missing semicolon diff -r 48a9c78cfbc9 -r 295001bff26d scripts/ChangeLog --- a/scripts/ChangeLog Tue Sep 01 09:31:39 2009 +0200 +++ b/scripts/ChangeLog Tue Sep 01 09:31:39 2009 +0200 @@ -1,3 +1,7 @@ +2009-08-29 John W. Eaton + + * time/datestr.m: Add missing semicolon. + 2009-08-26 E. Joshua Rigler * time/datestr.m: Set tm.isdst to -1 before calling mktime. diff -r 48a9c78cfbc9 -r 295001bff26d scripts/time/datestr.m --- a/scripts/time/datestr.m Tue Sep 01 09:31:39 2009 +0200 +++ b/scripts/time/datestr.m Tue Sep 01 09:31:39 2009 +0200 @@ -278,7 +278,7 @@ tm.sec = fix (sec); tm.usec = fix (rem (sec, 1) * 1e6); ## Force mktime to check for DST. - tm.isdst = -1 + tm.isdst = -1; str = strftime (df, localtime (mktime (tm)));