]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/guile-debugger.scm
Revert "Apply scripts/auxiliar/fixscm.sh"
[lilypond.git] / scm / guile-debugger.scm
index be77f2a48fcc86f93df99474ce55985550878ee9..8027b4f9558f38e1f9e0385d660f2016d1f13583 100644 (file)
   #:use-module (ice-9 debugging ice-9-debugger-extensions)
   #:use-module (ice-9 readline)
   #:export (set-break!
-            clear-break!
-            set-trace-call!
-            clear-trace-call!
-            set-trace-subtree!
-            clear-trace-subtree!
-            debug-help))
+           clear-break!
+           set-trace-call!
+           clear-trace-call!
+           set-trace-subtree!
+           clear-trace-subtree!
+           debug-help))
 
 (define (set-break! proc)
   (install-trap (make <procedure-trap>
-                  #:procedure proc
-                  #:behaviour debug-trap)))
+                 #:procedure proc
+                 #:behaviour debug-trap)))
 (define (clear-break! proc)
   (uninstall-trap (make <procedure-trap>
-                    #:procedure proc
-                    #:behaviour debug-trap)))
+                   #:procedure proc
+                   #:behaviour debug-trap)))
 
 
 (define (set-trace-call! proc)
   (install-trap (make <procedure-trap>
-                  #:procedure proc
-                  #:behaviour (list trace-trap
-                                    trace-at-exit))))
+                 #:procedure proc
+                 #:behaviour (list trace-trap
+                                   trace-at-exit))))
 (define (clear-trace-call! proc)
   (uninstall-trap (make <procedure-trap>
-                    #:procedure proc
-                    #:behaviour (list trace-trap
-                                      trace-at-exit))))
+                   #:procedure proc
+                   #:behaviour (list trace-trap
+                                     trace-at-exit))))
 
 (define (set-trace-subtree! proc)
   (install-trap (make <procedure-trap>
-                  #:procedure proc
-                  #:behaviour (list trace-trap
-                                    trace-until-exit))))
+                 #:procedure proc
+                 #:behaviour (list trace-trap
+                                   trace-until-exit))))
 
 (define (clear-trace-subtree! proc)
   (uninstall-trap (make <procedure-trap>
-                    #:procedure proc
-                    #:behaviour (list trace-trap
-                                      trace-until-exit))))
+                   #:procedure proc
+                   #:behaviour (list trace-trap
+                                     trace-until-exit))))
 
 (define (debug-help )
   (display "\nYou may add the following commands as debugging statements in your source file\n")