From cmucl-devel at common-lisp.net Tue Feb 2 02:58:02 2010 From: cmucl-devel at common-lisp.net (cmucl) Date: Tue, 02 Feb 2010 02:58:02 -0000 Subject: [cmucl-ticket] [cmucl] #22: sun4_solaris_sunc config uses gcc to build motif In-Reply-To: <052.f7f9202b8be4ba939846d607fd8eb57f@common-lisp.net> References: <052.f7f9202b8be4ba939846d607fd8eb57f@common-lisp.net> Message-ID: <061.7c198bfde64b638ff8577ffbfcc7fdd0@common-lisp.net> #22: sun4_solaris_sunc config uses gcc to build motif ----------------------+----------------------------------------------------- Reporter: rtoy | Owner: somebody Type: defect | Status: closed Priority: trivial | Milestone: Component: Core | Version: 2008-09 Resolution: fixed | Keywords: ----------------------+----------------------------------------------------- Changes (by rtoy): * status: new => closed * resolution: => fixed Comment: Fixed. Available in 2010-03. -- Ticket URL: cmucl cmucl From cmucl-devel at common-lisp.net Sun Feb 28 19:06:31 2010 From: cmucl-devel at common-lisp.net (cmucl) Date: Sun, 28 Feb 2010 19:06:31 -0000 Subject: [cmucl-ticket] [cmucl] #37: Debugger misses some variables Message-ID: <054.dfebf9730bdd83dc3413da60f9cc47eb@common-lisp.net> #37: Debugger misses some variables -------------------------+-------------------------------------------------- Reporter: heller | Owner: somebody Type: enhancement | Status: new Priority: minor | Milestone: Component: Core | Version: 2010-02 Keywords: | -------------------------+-------------------------------------------------- Evaluating code like this: {{{ (progn (defun foo (x) (flet ((bar () (break "x=~s" x) (print x))) #'bar)) (compile 'foo) (funcall (foo '(1 2 3)))) }}} brings up the debugger: {{{ x=(1 2 3) [Condition of type simple-condition] Restarts: 0: [continue] Return from BREAK. 1: [abort ] Return to Top-Level. }}} But list-locals doesn't show anything: {{{ 0] list-locals All variables currently have invalid values. 0] }}} That's odd, since at that point the variable x is still needed by print and so the debugger should be able to display it. -- Ticket URL: cmucl cmucl