Fix MAP-FOR-IN/DO-SYMBOLS..., add TERPRI.
(g (if (=== (typeof f) "function") f (get f "fvalue")))
(o ,object))
(for-in (key o)
- (call g ,(if *multiple-value-p* '|values| '|pv|) 1 (get o "key")))
+ (call g ,(if *multiple-value-p* '|values| '|pv|) 1 (property o key)))
(return ,(convert nil))))
(define-compilation %js-vref (var)
(let ((*print-escape* nil))
(write-to-string form)))
+(defun terpri ()
+ (write-char #\newline)
+ (values))
+
(defun write-line (x)
(write-string x)
- (write-char #\newline)
+ (terpri)
x)
(defun warn (string)