From: Stephen Adams Date: Thu, 12 Oct 1995 06:37:03 +0000 (+0000) Subject: Fixed bug in MAKE-ATAN-OPERATOR. X-Git-Tag: 20090517-FFI~5903 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=c7529129f745cb157adae17a3a9b3434ad75e745;p=mit-scheme.git Fixed bug in MAKE-ATAN-OPERATOR. --- diff --git a/v7/src/runtime/numint.scm b/v7/src/runtime/numint.scm index f40121bde..bc6906cca 100644 --- a/v7/src/runtime/numint.scm +++ b/v7/src/runtime/numint.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: numint.scm,v 1.4 1995/08/20 15:58:14 adams Exp $ +$Id: numint.scm,v 1.5 1995/10/12 06:37:03 adams Exp $ Copyright (c) 1989-1992 Massachusetts Institute of Technology @@ -98,6 +98,7 @@ MIT in each case. |# (make-arity-dispatched-procedure (lambda (self z1 #!optional z2) ; required for arity (error "ATAN operator: should never get to this case" self z1 z2)) + #F atan1 atan2))