Custom Query (1030 matches)
Results (526 - 528 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #105 | fixed | crash while using IDE inspector | ||
| Description |
I was inspecting a HEMLOCK-FRAME object, when I got a memory fault. I will try to see if it is reproducable. I don't know if it's useful, but here is the output: * Error in event process: Fault during read of memory address #x0 (4428A8) : 0 (FUNCALL #'#<Anonymous Function #x300041B9E8AF> #<CCL::INVALID-MEMORY-ACCESS #x300041EC8F5D>) 149
(4428D0) : 1 (SIGNAL #<CCL::INVALID-MEMORY-ACCESS #x300041EC8F5D> [...]) 989
(442928) : 2 (%ERROR #<CCL::INVALID-MEMORY-ACCESS #x300041EC8F5D> NIL 558404) 93
(442950) : 3 (FUNCALL #'#<CCL::XCMAIN> 17591849973482) 1933
(4429B8) : 4 (%PASCAL-FUNCTIONS% 1 17591849973482) 405
(442A20) : 6 (FUNCALL #'#<Anonymous Function #x300040DD882F>) 288
;;; ;;; #<APPKIT-PROCESS Initial(0) [Active] #x3000404114FD> requires access to Shared Terminal Input ;;; |
|||
| #254 | fixed | define-method-combination does not recognize full set of argument lambda list keywords | ||
| Description |
Welcome to Clozure Common Lisp Version 1.2-r8591:8592MS (DarwinPPC32)!
? (define-method-combination standard+ ()
((around (:around))
(before (:before))
(primary () :required t)
(after (:after)))
(:arguments &optional args)
(flet ((call-methods (methods)
(mapcar #'(lambda (method)
`(call-method ,method))
methods)))
(let ((form (if (or before after (rest primary))
`(multiple-value-prog1
(progn ,@(call-methods before)
(call-method ,(first primary)
,(rest primary)))
,@(call-methods (reverse after)))
`(call-method ,(first primary)))))
`(progn (print ,args)
,(if around
`(call-method ,(first around)
(,@(rest around)
(make-method ,form)))
form)))))
;Compiler warnings :
; Unused lexical variable &OPTIONAL, in an anonymous lambda form
STANDARD+
?
|
|||
| #315 | fixed | #'<macro op> in a :method clause causes spurious signature incongruity | ||
| Description |
QRES-GDS> (lisp-implementation-version) "Version 1.2-r9777-working-0711 (LinuxX8664)" QRES-GDS> (defgeneric test-or (a)
#<STANDARD-GENERIC-FUNCTION TEST-OR #x30006EF2F15F> QRES-GDS> (defgeneric test-or (a)
;Compiler warnings : ; In (TEST-OR (SEQUENCE)) inside an anonymous lambda form: FUNCTION can't be used to reference lexically visible macro OR. ; Evaluation aborted. ;;; the slime backtrace buffer contained: Lambda list of method #<STANDARD-METHOD TEST-OR (SEQUENCE)> is incompatible with that of the generic function TEST-OR. Method's lambda-list : (A) Generic-function's : (A)
Restarts:
Backtrace:
... |
|||
