RE: ODBC in v2.0?
JP Massar <[email protected]> Mon, 14 Apr 2003 15:44:21 -0700
| Newsgroups | gmane.lisp.corman |
|---|---|
| Message-ID | <[email protected]> |
> >;;; Warning: Unused variable X in function NIL, File C:\Program >Files\Corman Technologies\Corman Lisp 2.0\sys\loop.lisp, line 337 >;;; Warning: Unused variable X in function NIL, File C:\Program >Files\Corman Technologies\Corman Lisp 2.0\sys\loop.lisp, line 476 >;;; Warning: Unused variable X in function NIL, File C:\Program >Files\Corman Technologies\Corman Lisp 2.0\sys\loop.lisp, line 1333 >;;; Warning: Unused variable X in function NIL, File C:\Program >Files\Corman Technologies\Corman Lisp 2.0\sys\loop.lisp, line 1717 >;;; An error occurred in function HANDLE-INVALID-TYPE: >;;; Error: Type error: The value of UNIVERSE, #<LOOP-UNIVERSE ANSI> is not >of type LOOP-UNIVERSE. >;;; Entering Corman Lisp debug loop. >;;; Use :C followed by an option to exit. Type :HELP for help. >;;; Restart options: >;;; 1 Enter a value of the correct type. >;;; 2 Abort to top level. I wonder if this might be related to the following report I sent to Roger a little while back: **************************************** I assume this is a bug (Allegro gives T) although the Hyperspec is rather obscure. I assume it has been reported before in one guise or another, but just in case... File foo.lisp: --------------------------- (in-package :user) (defclass obj1 () ()) ----------------------------- (load "C:/Lispcode/foo.lisp") 2 (setq x1 (make-instance 'obj1)) #<Obj1 #x13705C8> (typep x1 'obj1) T (load "C:/Lispcode/foo.lisp") 2 (typep x1 'obj1) NIL