~ chicken-core (chicken-5) 7648a4e274f1ef780d8d71053a509d90f64d4b57
commit 7648a4e274f1ef780d8d71053a509d90f64d4b57 Author: Felix <bunny351@gmail.com> AuthorDate: Sun Oct 11 11:37:44 2009 +0200 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Tue Dec 1 09:37:29 2009 +0100 removed trace operations from manual diff --git a/manual/Using the interpreter b/manual/Using the interpreter index e9f878c3..04c09dcb 100644 --- a/manual/Using the interpreter +++ b/manual/Using the interpreter @@ -151,41 +151,6 @@ The toplevel loop understands a number of special commands: ; ,x EXP : Pretty-print macroexpanded expression {{EXP}} (the expression is not evaluated). -; ,tr SYMBOL ... : Enables tracing of the toplevel procedures with the given names. - -<enscript highlight=scheme> -#;1> (fac 10) ==> 3628800 -#;2> ,tr fac -#;3> (fac 3) -|(fac 3) -| (fac 2) -| (fac 1) -| (fac 0) -| fac -> 1 -| fac -> 1 -| fac -> 2 -|fac -> 6 ==> 6 -#;4> ,utr fac -#;5> (fac 3) ==> 6 -</enscript> -k - -; ,utr SYMBOL ... : Disables tracing of the given toplevel procedures. - -; ,br SYMBOL ... : Sets a breakpoint at the procedures named {{SYMBOL ...}}. Breakpoint can also be trigged using the {{breakpoint}} procedure. - -; ,ubr SYMBOL ... : Removes breakpoints. - -; ,c : Continues execution from the last invoked breakpoint. - -; ,breakall : Enable breakpoints for all threads (this is the default). - -; ,breakonly THREAD : Enable breakpoints only for the thread returned by the expression {{THREAD}}. - -; ,info : Lists traced procedures and breakpoints. - -; ,step EXPR : Evaluates {{EXPR}} in single-stepping mode. On each procedure call you will be presented with a menu that allows stepping to the next call, leaving single-stepping mode or triggering a breakpoint. Note that you will see some internal calls, and unsafe or heavily optimized compiled code might not be stepped at all. Single-stepping mode is also possible by invoking the {{singlestep}} procedure. - You can define your own toplevel commands using the {{toplevel-command}} procedure:Trap