Custom Query (1030 matches)
Results (919 - 921 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1020 | invalid | CL:LOAD improper behavior | ||
| Description |
cl:load should bind cl:compile-file-pathname to NIL but it does not, this causes the following to break: (eval-when (:compile-toplevel :load-toplevel)
|
|||
| #1021 | duplicate | Improper CL:LOAD behavior | ||
| Description |
During a call to compile-file, *compile-file-pathname* is bound... At other times, the value of these variables is ni. cl:load should bind cl:compile-file-pathname to NIL Because of this bug, the following fails: (eval-when (:compile-toplevel :load-toplevel)
|
|||
| #305 | fixed | initialize-instance bug for classes with lots of slots | ||
| Description |
The bug is exhibited in the following test code. To run it save it to a file, load it and then evaluate the TEST-IT function. I have tested this with the binary x8664 version for 1.2-rc1. Basically I am generating a class called BAR with 600 direct slots which derives from FOO with the BAR-GENERATOR macro. If BAR has 6 slots, then the test case works as it should. ;;; Start of test case (in-package :cl-user) (defclass foo ()
(defmacro bar-generator ()
(bar-generator) (defmethod initialize-instance :after ((x foo) &key)
(defun test-it ()
;;; End of test case |
|||
