diff options
author | Fredrik Gustafsson <[email protected]> | 2013-01-23 13:38:47 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-01-23 13:38:47 +0100 |
commit | e6c35e1d4a7b9dc0683c7703efa8f1e06680843d (patch) | |
tree | 72cdd29507666ce28b91dde8246a66ea72d98515 /erts | |
parent | 47de15b52c46bce34c9e0a172e54411622eb08f1 (diff) | |
download | otp-e6c35e1d4a7b9dc0683c7703efa8f1e06680843d.tar.gz otp-e6c35e1d4a7b9dc0683c7703efa8f1e06680843d.tar.bz2 otp-e6c35e1d4a7b9dc0683c7703efa8f1e06680843d.zip |
Revert "Merge branch 'nox/rm-reverse-eta-conversion/OTP-10682'"
This reverts commit 750ecdea08fa5fa7e32b7f3019eed96c1699427e, reversing
changes made to 2cfa0466c3b3c7bd5e3621aff0f3e2ca30addb68.
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/test/trace_local_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/trace_local_SUITE.erl b/erts/emulator/test/trace_local_SUITE.erl index b89a8c4a0e..1e0705fabe 100644 --- a/erts/emulator/test/trace_local_SUITE.erl +++ b/erts/emulator/test/trace_local_SUITE.erl @@ -874,7 +874,7 @@ exception_test(Opts, Func0, Args0) -> %% wrap them in wrappers... ?line {Func1,Args1} = case Function of - true -> {fun (F, As) -> exc(F, As) end,[Func0,Args0]}; + true -> {fun exc/2,[Func0,Args0]}; false -> {Func0,Args0} end, |