compile-file

"bryan o'connor" <[email protected]> Mon, 25 Apr 2005 13:34:12 -0700
Newsgroups gmane.lisp.openmcl.bugs
Message-ID <[email protected]>
[this is a simplified test-case for lossage when trying
  to build a merged clx-cvs + openmcl-clx.]

given a file named lose.lisp containing:

   (defconstant +get-string+       129)

   (defun foo () #.+get-string+)

? (compile-file "lose.lisp")
Read error between positions 36 and 66 in /Users/bryan/lose.lisp.
 > Error in process listener(1): Unbound variable: +GET-STRING+
 > While executing: "Unknown"
 > Type :GO to continue, :POP to abort.
 > If continued: Retry getting the value of +GET-STRING+.
Type :? for other options.


that should work, right?

   ...bryan