projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c7438d
)
Fix typo in WRITE-DECODED-TIME-AS-CTIME.
author
Chris Hanson
<org/chris-hanson/cph>
Tue, 9 Sep 2008 16:30:47 +0000
(16:30 +0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Tue, 9 Sep 2008 16:30:47 +0000
(16:30 +0000)
v7/src/runtime/datime.scm
patch
|
blob
|
history
diff --git
a/v7/src/runtime/datime.scm
b/v7/src/runtime/datime.scm
index 5b2af20d0f5d50d6c4054e65b884dfd35788401a..05962f4455658b71a24f65750e1eb577c239c5a3 100644
(file)
--- a/
v7/src/runtime/datime.scm
+++ b/
v7/src/runtime/datime.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: datime.scm,v 14.5
2 2008/09/09 16:28:10
cph Exp $
+$Id: datime.scm,v 14.5
3 2008/09/09 16:30:47
cph Exp $
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
@@
-445,6
+445,7
@@
USA.
(if (< day 10)
(write-char #\space port))
(write day port))
+ (write-char #\space port)
(write-d2 (decoded-time/hour dt) port)
(write-char #\: port)
(write-d2 (decoded-time/minute dt) port)