(fopcompile `(symbol-value ',form) path for-value-p)
;; Lexical
(when for-value-p
- (sb!fasl::dump-push (cdr (assoc form *fop-lexenv*))
- *compile-object*)))))))
+ (let ((handle (cdr (assoc form *fop-lexenv*))))
+ (if handle
+ (sb!fasl::dump-push handle
+ *compile-object*)
+ (progn
+ ;; Undefined variable. Signal a warning, and
+ ;; treat it as a special variable reference,
+ ;; like the real compiler does.
+ (note-undefined-reference form :variable)
+ (fopcompile `(symbol-value ',form)
+ path
+ for-value-p))))))))))
((listp form)
(multiple-value-bind (macroexpansion macroexpanded-p)
(macroexpand form)
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.2.18"
+"1.0.2.19"