Custom Query (1030 matches)
Results (343 - 345 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #106 | fixed | Can't eval region with package changes | ||
| Description |
Start up the IDE, and open an editor window on attached file. Hit cmd-A then Enter. Get error: Welcome to OpenMCL Version 1.1-pre-070722 (DarwinPPC32)! ? ;Loading #P"/Users/gz/OpenMCL/trunk/ccl/tools/asdf.dfsl"... ? ? ? > Error: Unbound variable: COMMON-LISP-USER::COCOA.ASD I'm guessing what's happening is that the in-package form is not affecting the rest of the evaluation. It should. |
|||
| #107 | fixed | Insertion point moves during tab | ||
| Description |
The behavior of the insertion point during indentation (Tab command) is still not quite right. The case where the insertion point is initially in the whitespace before the first non-whitespace character on the line is now correct (the insertion point moves to the first non-whitespace character). However if the insertion point is initially after the whitespace, then it shouldn't change (currently it gets moved to the first non-whitespace character, not correct). |
|||
| #109 | fixed | x86-64 inspector fails to print closed-over value correctly | ||
| Description |
CL-USER> (defun make-adder (n)
#'(lambda (x)
(+ x n)))
MAKE-ADDER
CL-USER> (setf junk (make-adder 100))
#<COMPILED-LEXICAL-CLOSURE #x3000411258BF>
CL-USER> (inspect *)
[0] #<COMPILED-LEXICAL-CLOSURE #x3000411258BF>
[1] Name: NIL
[2] Arglist (analysis): (X)
[3] Inner lfun: #<Anonymous Function #x30004112C3AF>
Closed over values
[5] N: #<error printing SINGLE-FLOAT #xF2000000000051>
Inspect>
The value for N is obviously printed incorrectly. |
|||
