changed "condition" to "exception" in debugger output.

This commit is contained in:
Abdulaziz Ghuloum 2009-06-26 11:05:40 +03:00
parent d2cc4c65a3
commit f495665f7d
2 changed files with 3 additions and 3 deletions

View File

@ -250,12 +250,12 @@
(with-exception-handler
(lambda (con)
(define (help)
(printf "Condition trapped by debugger.\n")
(printf "Exception trapped by debugger.\n")
(print-condition con)
(printf "~a\n"
(string-append
"[t] Trace. "
"[r] Reraise condition. "
"[r] Reraise exception. "
"[c] Continue. "
"[q] Quit. "
"[?] Help. ")))

View File

@ -1 +1 @@
1808
1809