From ec07f2c52f835d5e464e589e75519d1c6c7b914c Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 15 May 2000 17:39:28 +0000 Subject: [PATCH] Allow arbitrary whitespace in passed-in time strings. --- v7/src/runtime/datime.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/runtime/datime.scm b/v7/src/runtime/datime.scm index 7cf163702..6224f85ea 100644 --- a/v7/src/runtime/datime.scm +++ b/v7/src/runtime/datime.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: datime.scm,v 14.25 2000/03/22 17:44:39 cph Exp $ +$Id: datime.scm,v 14.26 2000/05/15 17:39:28 cph Exp $ Copyright (c) 1988-2000 Massachusetts Institute of Technology @@ -234,7 +234,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. (lambda () (error "Ill-formed RFC-822 time string:" string)))) (let ((tokens - (let ((tokens (burst-string string #\space #t))) + (let ((tokens (burst-string string char-set:whitespace #t))) (case (length tokens) ((5) tokens) ((6) -- 2.25.1