another trap printing tweak
authorAndy Wingo <wingo@pobox.com>
Thu, 23 Sep 2010 15:28:15 +0000 (17:28 +0200)
committerAndy Wingo <wingo@pobox.com>
Thu, 23 Sep 2010 15:28:15 +0000 (17:28 +0200)
* module/system/vm/trap-state.scm (add-trap-at-procedure-call!):
  (add-trace-at-procedure-call!): Breakpoint / tracepoint name tweaks.

module/system/vm/trap-state.scm

index d97895e..ca6bb3e 100644 (file)
      trap-state
      (make-trap-wrapper
       idx #t trap
-      (format #f "breakpoint at ~a" proc)))))
+      (format #f "Breakpoint at ~a" proc)))))
 
 (define* (add-trace-at-procedure-call! proc
                                        #:optional (trap-state (the-trap-state)))
      trap-state
      (make-trap-wrapper
       idx #t trap
-      (format #f "tracepoint at ~a" proc)))))
+      (format #f "Tracepoint at ~a" proc)))))
 
 (define* (add-trap! trap name #:optional (trap-state (the-trap-state)))
   (let* ((idx (next-index! trap-state)))