Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (295 - 297 of 1030)

Ticket Resolution Summary Owner Reporter
#469 fixed source-note missing under certain conditions Ralf Stoye
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)

(:documentation "Parse INPUT, ") (:method ((input string))

(format t "string ~s" input))

(:method ((input number))

(format t "number ~s" (* 2 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 Gary Byers gz
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 mikel gz
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.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.