author | wenzelm |
Thu, 01 Oct 2009 23:49:05 +0200 | |
changeset 32844 | 044711ee3f21 |
parent 32843 | c8f5a7c8353f |
child 32849 | c58fdaef7a05 |
--- a/src/Pure/Concurrent/lazy_sequential.ML Thu Oct 01 23:27:05 2009 +0200 +++ b/src/Pure/Concurrent/lazy_sequential.ML Thu Oct 01 23:49:05 2009 +0200 @@ -19,7 +19,7 @@ fun peek (Lazy r) = (case ! r of Expr _ => NONE - | Result x => SOME x); + | Result res => SOME res); fun lazy e = Lazy (Unsynchronized.ref (Expr e)); fun value a = Lazy (Unsynchronized.ref (Result (Exn.Result a)));