~ chicken-core (chicken-5) c1154565abc041202110aae8e93a57cbe3fba3c2


commit c1154565abc041202110aae8e93a57cbe3fba3c2
Author:     Felix <bunny351@gmail.com>
AuthorDate: Sun Oct 11 11:37:44 2009 +0200
Commit:     Felix <bunny351@gmail.com>
CommitDate: Sun Oct 11 11:37:44 2009 +0200

    removed trace operations from manual

diff --git a/manual/Using the interpreter b/manual/Using the interpreter
index 701a9c06..04c09dcb 100644
--- a/manual/Using the interpreter	
+++ b/manual/Using the interpreter	
@@ -151,29 +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.
-
-; ,info : Lists traced procedures.
-
 You can define your own toplevel commands using the {{toplevel-command}}
 procedure:
 
Trap