From: Chris Hanson Date: Tue, 27 Apr 1999 17:23:16 +0000 (+0000) Subject: Fix thinko in error call. X-Git-Tag: 20090517-FFI~4561 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=56f790bc306dea189fbc22d98bd248c72463f2c5;p=mit-scheme.git Fix thinko in error call. --- 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)