Custom Query (1030 matches)
Results (295 - 297 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #469 | fixed | source-note missing under certain conditions | ||
| Description |
compile a file containing a defgeneric as its last form, and load the compiled file. the source-notes for that function (and its methods) are missing, instead there are pathnames. Consequently slime fails when trying to "goto definition" (meta-.). Now for the magic: if you add some other definition (eg. a defun) below (and compile again), the source-notes are there!? example: (contents of file "~/source-note-test.lisp" ) (defgeneric adoctestfun (input)
;; (defun somethingunrelated (i) (* 2 i)) (compile-file "~/source-note-test.lisp") (load "~/source-note-test.dx64fsl") (find-definition-sources 'adoctestfun) -> no source notes ;; now uncomment the defun and try again: (compile-file "~/source-note-test.lisp") (load "~/source-note-test.dx64fsl") (find-definition-sources 'adoctestfun) -> ok, source notes are there (tested in 1.3-r11936 DarwinX8664 and 1.3-RC1-r11804MS (LinuxX8632) |
|||
| #470 | fixed | Error when setting a value in a matrix unless safety 3 | ||
| Description |
Reported in http://clozure.com/pipermail/openmcl-devel/2009-May/009383.html. Test case: (defun test ()
(let ((array (make-array '(1 1) :initial-element 2.0
:element-type 'single-float))
(var 1.0))
(setf (aref array 0 0) var
var nil)))
|
|||
| #471 | fixed | Right arrow on selection | ||
| Description |
From http://clozure.com/pipermail/openmcl-devel/2009-May/009393.html: if I double click and mark (make "blue") one word and the hit the right arrow the cursor go to one position to the right of the last element in the selection. if i double click and mark something in parenthesis and hit the right arrow, the cursor goes to the position one step to the right of the first element in the selection. normally, in a mac application if you select some text and then hit the right arrow the cursos goes to the position just after the last element of the selection. |
|||
