Custom Query (1030 matches)
Results (715 - 717 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #916 | duplicate | Search Files difficulties: consequences of closing dialog before search is completed. | ||
| Description |
1.8-prerelease-r15247M (DarwinX8664) In teh Search Files dialog, mis-queueing an In Folder choice, then searching, can require aborting a big silly search. Perhaps the search button could be converted into an Abort button. Meanwhile closing the dialog/search window causes this output in the AltConsole, Re-starting the Search Files dialog, changing the In Folder and leaves the Search button inoperable until the Find field is changed.
;;; ;;; #<PROCESS Monitor thread for external process (grep -i -r -I -s -c -e defclass --include *.lisp /Users/user/)(15) [Active] #x302000F573CD> requires access to Shared Terminal Input ;;; Type (:y 15) to yield control to this thread. ;;; |
|||
| #918 | fixed | Strange stack overflow in remove-if-not | ||
| Description |
I think this is a compiler bug. (defun test-func ()
;; (declare (optimize (speed 0) (safety 2))) ;-> success
(declare (optimize (speed 0) (safety 3))) ;-> error
(dotimes (i 10000)
(remove-if-not #'(lambda (e)
(eql i e))
'(a))))
(loop for i from 1 to 50000 do
(format t "i=~A~%" i)
(let ((t1 (ccl:process-run-function "t1" #'test-func))
(t2 (ccl:process-run-function "t2" #'test-func)))
(ccl:join-process t1)
(ccl:join-process t2)))
...
i=275
i=276
i=277
i=278
> > Error: Stack overflow on value stack.
> > While executing: CCL::LIST-DELETE-MODERATELY-COMPLEX, in process t2(557).
;;;
;;; #<PROCESS t2(557) [Active] #xC367F56> requires access to Shared
Terminal Input
;;; Type (:y 557) to yield control to this thread.
;;;
|
|||
| #919 | fixed | returning from backtrace crashes if the restarts dialog has been shown and then closed | ||
| Description |
Terje Norderhaug reports: Returning from backtrace fails if the Restarts dialog has been closed. The reason is that ui-object-exit-backtrace-context attempts to #/close the (car (ccl::bt.restarts context)) even if that is a closed restarts sequence-window-controller. See attached file. |
|||
