diff options
author | Andy Wingo <wingo@pobox.com> | 2011-04-11 23:30:52 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-04-11 23:30:52 +0200 |
commit | 21c05db45b69f8a62b84c36abc86cb935fa967d7 (patch) | |
tree | 743df01da540e7fd628f54894e7d5fbe94b03996 /module/language/tree-il.scm | |
parent | 4db853d747ac115f799c93e2de93f5159ad84109 (diff) | |
parent | c89b45299329d034875429804f18768c1ea96713 (diff) | |
download | guile-21c05db45b69f8a62b84c36abc86cb935fa967d7.tar.gz |
Merge remote branch 'origin/stable-2.0'
Conflicts:
GUILE-VERSION
test-suite/tests/srfi-4.test
Diffstat (limited to 'module/language/tree-il.scm')
-rw-r--r-- | module/language/tree-il.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/module/language/tree-il.scm b/module/language/tree-il.scm index 5fd4c125a..221cf264d 100644 --- a/module/language/tree-il.scm +++ b/module/language/tree-il.scm @@ -1,4 +1,4 @@ -;;;; Copyright (C) 2009, 2010 Free Software Foundation, Inc. +;;;; Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc. ;;;; ;;;; This library is free software; you can redistribute it and/or ;;;; modify it under the terms of the GNU Lesser General Public @@ -471,8 +471,9 @@ `(fluid-set! ,(tree-il->scheme fluid) ,(tree-il->scheme exp))) ((<prompt> tag body handler) - `((@ (ice-9 control) prompt) - ,(tree-il->scheme tag) (lambda () ,(tree-il->scheme body)) + `(call-with-prompt + ,(tree-il->scheme tag) + (lambda () ,(tree-il->scheme body)) ,(tree-il->scheme handler))) |