guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 02/17: Fix srfi-34 indentation


From: Andy Wingo
Subject: [Guile-commits] 02/17: Fix srfi-34 indentation
Date: Mon, 31 Oct 2016 21:39:36 +0000 (UTC)

wingo pushed a commit to branch master
in repository guile.

commit e5399d3e7ca5de4e1981a9a9ddf136bd9d743c54
Author: Andy Wingo <address@hidden>
Date:   Sun Oct 30 20:31:57 2016 +0100

    Fix srfi-34 indentation
    
    * module/srfi/srfi-34.scm (with-exception-handler): Fix indentation.
---
 module/srfi/srfi-34.scm |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/module/srfi/srfi-34.scm b/module/srfi/srfi-34.scm
index 05bbdfa..183f0ae 100644
--- a/module/srfi/srfi-34.scm
+++ b/module/srfi/srfi-34.scm
@@ -41,9 +41,9 @@ procedure that accepts one argument.  It is installed as the 
current
 exception handler for the dynamic extent (as determined by
 dynamic-wind) of the invocation of THUNK."
   (with-throw-handler throw-key
-             thunk
-             (lambda (key obj)
-               (handler obj))))
+    thunk
+    (lambda (key obj)
+      (handler obj))))
 
 (define (raise obj)
   "Invokes the current exception handler on OBJ.  The handler is



reply via email to

[Prev in Thread] Current Thread [Next in Thread]