changeset 9586:1393896df3b3

datestr: add missing semicolon
author John W. Eaton <jwe@octave.org>
date Sat, 29 Aug 2009 11:50:59 -0400
parents 06b8b51dca48
children 5ab448e3febe
files scripts/ChangeLog scripts/time/datestr.m
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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  <jwe@octave.org>
+
+	* time/datestr.m: Add missing semicolon.
+
 2009-08-17  Jaroslav Hajek  <highegg@gmail.com>
 
 	* general/int2str.m: Convert to double before calling log10.
--- 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)));