From 56f790bc306dea189fbc22d98bd248c72463f2c5 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 27 Apr 1999 17:23:16 +0000 Subject: [PATCH] Fix thinko in error call. --- 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 19dfb9af1..4290ef494 100644 --- a/v7/src/runtime/datime.scm +++ b/v7/src/runtime/datime.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: datime.scm,v 14.21 1999/04/08 05:00:59 cph Exp $ +$Id: datime.scm,v 14.22 1999/04/27 17:23:16 cph Exp $ Copyright (c) 1988-1999 Massachusetts Institute of Technology @@ -53,7 +53,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 'MAKE-DECODED-TIME) (let ((zone (if (default-object? zone) #f zone))) (if (and zone (not (time-zone? zone))) - (error:bad-range-argument zone "time zone" 'MAKE-DECODED-TIME)) + (error:wrong-type-argument zone "time zone" 'MAKE-DECODED-TIME)) (if zone (%make-decoded-time second minute hour day month year (compute-day-of-week day month year) -- 2.25.1