Marco Gidde
2004-06-08 07:43:57 UTC
Hi,
when I compile the code snippet below and try to load it into a fresh
environment, emacs-cl complains that the package "TEST" can't be
found. It seems that the compiler places the definition/interning of
special variables right at the beginning of the *.elc file, even
before the package is defined.
;;; file test.lisp
(defpackage "TEST" (:use "CL"))
(in-package "TEST")
(defvar *special-var* nil)
;;; end of file
Best regards,
Marco Gidde
when I compile the code snippet below and try to load it into a fresh
environment, emacs-cl complains that the package "TEST" can't be
found. It seems that the compiler places the definition/interning of
special variables right at the beginning of the *.elc file, even
before the package is defined.
;;; file test.lisp
(defpackage "TEST" (:use "CL"))
(in-package "TEST")
(defvar *special-var* nil)
;;; end of file
Best regards,
Marco Gidde