# HG changeset patch # User John W. Eaton # Date 1251561059 14400 # Node ID 1393896df3b358f6deb3bc48528efe197a96080f # Parent 06b8b51dca4897149461a14427203b9e801dced0 datestr: add missing semicolon diff -r 06b8b51dca48 -r 1393896df3b3 scripts/ChangeLog --- a/scripts/ChangeLog Fri Aug 28 18:37:31 2009 -0400 +++ b/scripts/ChangeLog Sat Aug 29 11:50:59 2009 -0400 @@ -1,3 +1,7 @@ +2009-08-29 John W. Eaton + + * time/datestr.m: Add missing semicolon. + 2009-08-17 Jaroslav Hajek * general/int2str.m: Convert to double before calling log10. diff -r 06b8b51dca48 -r 1393896df3b3 scripts/time/datestr.m --- a/scripts/time/datestr.m Fri Aug 28 18:37:31 2009 -0400 +++ b/scripts/time/datestr.m Sat Aug 29 11:50:59 2009 -0400 @@ -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)));