diff options
| author | Michael Gran <spk121@yahoo.com> | 2009-04-26 09:13:38 -0700 |
|---|---|---|
| committer | Michael Gran <spk121@yahoo.com> | 2009-04-26 09:13:38 -0700 |
| commit | feda5bd1c08d69628ec9fdb5577d5c894b70b6e8 (patch) | |
| tree | 7fb7f8f18cf6d56afc48ca007e5c24029181acf1 | |
| parent | a1386c72a49c5f047c7d6451ffdfd23933c0a5c8 (diff) | |
| download | guile-string-abstraction.tar.gz | |
Lowercase a character namestring-abstraction
| -rw-r--r-- | module/srfi/srfi-19.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/srfi/srfi-19.scm b/module/srfi/srfi-19.scm index 29c604fcd..235e2b8f9 100644 --- a/module/srfi/srfi-19.scm +++ b/module/srfi/srfi-19.scm @@ -1077,7 +1077,7 @@ pad-with 2) port)))) (cons #\t (lambda (date pad-with port) - (display #\Tab port))) + (display #\tab port))) (cons #\T (lambda (date pad-with port) (display (date->string date "~H:~M:~S") port))) (cons #\U (lambda (date pad-with port) |
