Rename local variable to prevent confusion during debugging.
authorChris Hanson <org/chris-hanson/cph>
Tue, 10 Apr 1990 16:03:03 +0000 (16:03 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 10 Apr 1990 16:03:03 +0000 (16:03 +0000)
v7/src/runtime/numint.scm

index d367bbd26b337e72739c59e084a463430c26a248..06b0331fd97875d7c8837ae484f33139eddf69ef 100644 (file)
@@ -1,8 +1,8 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/numint.scm,v 1.1 1989/11/09 04:02:53 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/numint.scm,v 1.2 1990/04/10 16:03:03 cph Rel $
 
-Copyright (c) 1989 Massachusetts Institute of Technology
+Copyright (c) 1989, 1990 Massachusetts Institute of Technology
 
 This material was developed by the Scheme project at the Massachusetts
 Institute of Technology, Department of Electrical Engineering and
@@ -60,9 +60,9 @@ MIT in each case. |#
     (reduce-comparator (lambda (x y) (not (< x y)))
                       zs)))
 
-(define (make-max/min-operator max)
+(define (make-max/min-operator max/min)
   (lambda (x . xs)
-    (reduce-max/min max x xs)))
+    (reduce-max/min max/min x xs)))
 
 (define (make-atan-operator atan1 atan2)
   (lambda (z . xs)