[Openmcl-devel] usefull toplevel commands

Gary Byers gb at clozure.com
Wed Mar 19 12:34:00 PST 2003



On 17 Mar 2003, Marco Baringer wrote:

>
> i'd also like ot know if there are any problems with these, they work
> for me but coding them was basically trial and error.

I haven't had a chance to try these yet, but they look right to me.
Assuming that they work or could be made to, is it OK with you if they
get incorporated into the next release ?

>
> (in-package :ccl)
>
> (define-toplevel-command :break set (n frame value) "Set <n>th item of frame <frame> to <value>"
>   (let* ((frame-sp (nth-raw-frame frame *break-frame* *current-stack-group*)))
>     (if frame-sp
>         (toplevel-print (list (set-nth-value-in-frame frame-sp n *current-stack-group* value)))
>         (format *debug-io* "No frame with number ~D~%" frame))))
>
> ;;;; this is the one i've found the most usefull since from within
> ;;;; the inspector you can change the data on the stack
> (define-toplevel-command :break iv (n frame) "Inspect the <n>th item of frame <frame>"
>   (let* ((frame-sp (nth-raw-frame frame *break-frame* *current-stack-group*)))
>     (if frame-sp
>         (inspect (nth-value-in-frame frame-sp n *current-stack-group*))
>         (format *debug-io* "No frame with number ~D~%" frame))))
>
> (define-toplevel-command :break d (n frame) "Describe the <n>th item of frame number <frame>"
>   (let* ((frame-sp (nth-raw-frame frame *break-frame* *current-stack-group*)))
>     (if frame-sp
>         (describe (nth-value-in-frame frame-sp n *current-stack-group*))
>         (format *debug-io* "No frame with number ~D~%" frame))))
>
> --
> -Marco
> Ring the bells that still can ring.
> Forget your perfect offering.
> There is a crack in everything.
> That's how the light gets in.
>      -Leonard Cohen
>
>
> _______________________________________________
> Openmcl-devel mailing list
> Openmcl-devel at clozure.com
> http://clozure.com/cgi-bin/mailman/listinfo/openmcl-devel
>
>


_______________________________________________
Openmcl-devel mailing list
Openmcl-devel at clozure.com
http://clozure.com/cgi-bin/mailman/listinfo/openmcl-devel



More information about the Openmcl-devel mailing list