#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/arith.scm,v 1.7 1989/10/31 05:06:08 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/arith.scm,v 1.8 1989/11/09 22:07:04 jinx Exp $
Copyright (c) 1989 Massachusetts Institute of Technology
(else
(complex:* (car zs)
(complex:* (cadr zs)
- (reduce complex:+ 1 (cddr zs)))))))
+ (reduce complex:* 1 (cddr zs)))))))
+
(define (- z1 . zs)
(cond ((null? zs) (complex:negate z1))
((null? (cdr zs)) (complex:- z1 (car zs)))
#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.65 1989/11/09 03:45:06 gjs Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/version.scm,v 14.66 1989/11/09 22:07:48 jinx Exp $
Copyright (c) 1988, 1989 Massachusetts Institute of Technology
'()))
(add-system! microcode-system)
(add-event-receiver! event:after-restore snarf-microcode-version!)
- (add-identification! "Runtime" 14 65))
+ (add-identification! "Runtime" 14 66))
(define microcode-system)
(define (snarf-microcode-version!)