diff options
author | Lukas Larsson <[email protected]> | 2017-04-21 14:53:52 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2017-04-25 14:16:38 +0200 |
commit | ab048d66c59fa827bf4129fc95bec21488a931a4 (patch) | |
tree | 743a89fa7cc06ff070cb60f98241a2c5d0053c35 /lib/stdlib | |
parent | eece23d7f6b225a6abc3807f9af44d1f742f7eee (diff) | |
download | otp-ab048d66c59fa827bf4129fc95bec21488a931a4.tar.gz otp-ab048d66c59fa827bf4129fc95bec21488a931a4.tar.bz2 otp-ab048d66c59fa827bf4129fc95bec21488a931a4.zip |
erts: Auto-import port_to_list for consistency
Follow the same pattern as pid_to_list
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/src/erl_internal.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/stdlib/src/erl_internal.erl b/lib/stdlib/src/erl_internal.erl index 6bf4eea843..11d02c0999 100644 --- a/lib/stdlib/src/erl_internal.erl +++ b/lib/stdlib/src/erl_internal.erl @@ -349,6 +349,7 @@ bif(nodes, 1) -> true; bif(now, 0) -> true; bif(open_port, 2) -> true; bif(pid_to_list, 1) -> true; +bif(port_to_list, 1) -> true; bif(port_close, 1) -> true; bif(port_command, 2) -> true; bif(port_command, 3) -> true; @@ -362,6 +363,7 @@ bif(process_info, 2) -> true; bif(processes, 0) -> true; bif(purge_module, 1) -> true; bif(put, 2) -> true; +bif(ref_to_list, 1) -> true; bif(register, 2) -> true; bif(registered, 0) -> true; bif(round, 1) -> true; |