Skip to content

Commit

Permalink
debug trace cleanup (bootstrap)
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-serrano committed Nov 17, 2024
1 parent f19f2ea commit c969bdc
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions runtime/Llib/object.scm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;* ------------------------------------------------------------- */
;* Author : Manuel Serrano */
;* Creation : Thu Apr 25 14:20:42 1996 */
;* Last change : Fri Nov 15 18:00:35 2024 (serrano) */
;* Last change : Sun Nov 17 10:47:03 2024 (serrano) */
;* ------------------------------------------------------------- */
;* The `object' library */
;* ------------------------------------------------------------- */
Expand Down Expand Up @@ -1494,7 +1494,6 @@
;* exception-notify ::obj ... */
;*---------------------------------------------------------------------*/
(define-generic (exception-notify exc::obj)
(tprint "EXN NOTIFY " (typeof exc))
(let ((port (current-error-port)))
(display "*** UNKNOWN EXCEPTION: " port)
(write-circle exc port)
Expand All @@ -1513,14 +1512,12 @@
;* exception-notify ::&error ... */
;*---------------------------------------------------------------------*/
(define-method (exception-notify exc::&error)
(tprint "EXN.2 NOTIFY " (typeof exc))
(error-notify exc))

;*---------------------------------------------------------------------*/
;* exception-notify ::&io-write-error ... */
;*---------------------------------------------------------------------*/
(define-method (exception-notify exc::&io-write-error)
(tprint "EXN.3 NOTIFY " (typeof exc))
(with-access::&io-write-error exc (obj)
(unless (eq? obj (current-error-port))
(call-next-method))))
Expand All @@ -1529,7 +1526,6 @@
;* exception-notify ::&warning ... */
;*---------------------------------------------------------------------*/
(define-method (exception-notify exc::&warning)
(tprint "EXN.4 NOTIFY " (typeof exc))
(warning-notify exc))

;*---------------------------------------------------------------------*/
Expand Down

0 comments on commit c969bdc

Please sign in to comment.