diff options
author | Björn Gustavsson <[email protected]> | 2011-03-15 14:45:39 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-08-16 08:58:46 +0200 |
commit | aac2fac655dca8164b9ab4b1d4d1d45ffc7f9530 (patch) | |
tree | 6563fee6024c01b81a0c3bdcf52584ce82078bb0 /lib/debugger/src/dbg_iload.erl | |
parent | 654f13c5e5ebdc2d2bde4bf22259aeecf87d8295 (diff) | |
download | otp-aac2fac655dca8164b9ab4b1d4d1d45ffc7f9530.tar.gz otp-aac2fac655dca8164b9ab4b1d4d1d45ffc7f9530.tar.bz2 otp-aac2fac655dca8164b9ab4b1d4d1d45ffc7f9530.zip |
Remove support for erlang:fault/{1,2}
Since erlang:fault/{1,2} is no longer supported in the run-time
system (it was removed several releases ago), there is no need
to still support it in the debugger.
Diffstat (limited to 'lib/debugger/src/dbg_iload.erl')
-rw-r--r-- | lib/debugger/src/dbg_iload.erl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/debugger/src/dbg_iload.erl b/lib/debugger/src/dbg_iload.erl index db5a17ad2e..70d43c20b2 100644 --- a/lib/debugger/src/dbg_iload.erl +++ b/lib/debugger/src/dbg_iload.erl @@ -404,8 +404,6 @@ expr({call,Line,{remote,_,{atom,_,erlang},{atom,_,throw}},[_]=As}) -> {dbg,Line,throw,expr_list(As)}; expr({call,Line,{remote,_,{atom,_,erlang},{atom,_,error}},[_]=As}) -> {dbg,Line,error,expr_list(As)}; -expr({call,Line,{remote,_,{atom,_,erlang},{atom,_,fault}},[_]=As}) -> - {dbg,Line,fault,expr_list(As)}; expr({call,Line,{remote,_,{atom,_,erlang},{atom,_,exit}},[_]=As}) -> {dbg,Line,exit,expr_list(As)}; expr({call,Line,{remote,_,{atom,_,erlang},{atom,_,apply}},[_,_,_]=As0}) -> |