diff options
author | Richard Carlsson <[email protected]> | 2018-05-23 10:22:33 +0200 |
---|---|---|
committer | Richard Carlsson <[email protected]> | 2018-05-24 09:35:43 +0200 |
commit | c7ad9262c7e4a8446396256e0f8b597ea57e7841 (patch) | |
tree | 8fa097c96e43088bb4557737a436ddcf9648ea8d /erts/emulator/beam/bif.c | |
parent | 7929308b53009596e1560eedca77b96b70e14aec (diff) | |
download | otp-c7ad9262c7e4a8446396256e0f8b597ea57e7841.tar.gz otp-c7ad9262c7e4a8446396256e0f8b597ea57e7841.tar.bz2 otp-c7ad9262c7e4a8446396256e0f8b597ea57e7841.zip |
Remove undocumented and unused -# display_items emulator option
Diffstat (limited to 'erts/emulator/beam/bif.c')
-rw-r--r-- | erts/emulator/beam/bif.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/erts/emulator/beam/bif.c b/erts/emulator/beam/bif.c index 97e1ee1286..d5b3e08fae 100644 --- a/erts/emulator/beam/bif.c +++ b/erts/emulator/beam/bif.c @@ -4438,13 +4438,6 @@ BIF_RETTYPE system_flag_2(BIF_ALIST_2) erts_proc_lock(BIF_P, ERTS_PROC_LOCK_MAIN); BIF_RET(old_value); - } else if (BIF_ARG_1 == am_display_items) { - int oval = display_items; - if (!is_small(BIF_ARG_2) || (n = signed_val(BIF_ARG_2)) < 0) { - goto error; - } - display_items = n < 32 ? 32 : n; - BIF_RET(make_small(oval)); } else if (BIF_ARG_1 == am_debug_flags) { BIF_RET(am_true); } else if (BIF_ARG_1 == am_backtrace_depth) { |