+ John Morrison <[EMAIL PROTECTED]>:

| If I go in-package "COMMON-LISP" (which is "used" by my package
| "jm-package") and export backq-list*, and then rerun the compiler,
| then everything works as intended.
| 
| I would appreciate constructive suggestions [...].

Just do

#+cmucl (import 'cl::backq-list*)

in the file name jm-package.  The #+cmucl is there to remind you that
this is quite non-portable.  Maybe you should also add

#-cmucl (error "Non-portable code.  Requires CMUCL.")

in case someone ever tries running it under another lisp.

- Harald

Reply via email to