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 (with-exception-handler
(lambda (con) (lambda (con)
(define (help) (define (help)
(printf "Condition trapped by debugger.\n") (printf "Exception trapped by debugger.\n")
(print-condition con) (print-condition con)
(printf "~a\n" (printf "~a\n"
(string-append (string-append
"[t] Trace. " "[t] Trace. "
"[r] Reraise condition. " "[r] Reraise exception. "
"[c] Continue. " "[c] Continue. "
"[q] Quit. " "[q] Quit. "
"[?] Help. "))) "[?] Help. ")))

View File

@ -1 +1 @@
1808 1809