Merge branch 'master' of git://factorcode.org/git/factor

db4
Joe Groff 2009-09-08 15:48:18 -05:00
commit 7a2aecea1c
1 changed files with 7 additions and 1 deletions

View File

@ -11,6 +11,7 @@ ARTICLE: "debugger" "The debugger"
"User-defined errors can have customized printed representation by implementing a generic word:"
{ $subsection error. }
"A number of words facilitate interactive debugging of errors:"
{ $subsection :error }
{ $subsection :s }
{ $subsection :r }
{ $subsection :c }
@ -22,10 +23,15 @@ ARTICLE: "debugger" "The debugger"
{ $subsection :2 }
{ $subsection :3 }
{ $subsection :res }
"You can read more about error handling in " { $link "errors" } "." ;
"You can read more about error handling in " { $link "errors" } "."
$nl
"Note that in Factor, the debugger is a tool for printing and inspecting errors, not for walking through code. For the latter, see " { $link "ui-walker" } "." ;
ABOUT: "debugger"
HELP: :error
{ $description "Prints the most recent error. Used for interactive debugging." } ;
HELP: :s
{ $description "Prints the data stack at the time of the most recent error. Used for interactive debugging." } ;