diff options
author | Björn Gustavsson <[email protected]> | 2017-05-09 09:23:25 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-05-09 09:23:25 +0200 |
commit | e1c70e41196e8118d9f24b8d9023cb0f876ee0df (patch) | |
tree | a47d5681431f8e9d543b0f86ba02463fb48a6667 /lib/compiler/src | |
parent | c002dc9493a2ae9b01d49e39b9e89ef38b165973 (diff) | |
parent | 3393e2249d0987ec25eefbacb7b24c061fd7a64e (diff) | |
download | otp-e1c70e41196e8118d9f24b8d9023cb0f876ee0df.tar.gz otp-e1c70e41196e8118d9f24b8d9023cb0f876ee0df.tar.bz2 otp-e1c70e41196e8118d9f24b8d9023cb0f876ee0df.zip |
Merge pull request #1439 from josevalim/jv-atu8-function
Add a test for utf8 function names
Diffstat (limited to 'lib/compiler/src')
-rw-r--r-- | lib/compiler/src/v3_kernel_pp.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/v3_kernel_pp.erl b/lib/compiler/src/v3_kernel_pp.erl index 187e69a22c..716280a95c 100644 --- a/lib/compiler/src/v3_kernel_pp.erl +++ b/lib/compiler/src/v3_kernel_pp.erl @@ -145,7 +145,7 @@ format_1(#k_local{name=N,arity=A}, Ctxt) -> "local " ++ format_fa_pair({N,A}, Ctxt); format_1(#k_remote{mod=M,name=N,arity=A}, _Ctxt) -> %% This is for our internal translator. - io_lib:format("remote ~s:~s/~w", [format(M),format(N),A]); + io_lib:format("remote ~ts:~ts/~w", [format(M),format(N),A]); format_1(#k_internal{name=N,arity=A}, Ctxt) -> "internal " ++ format_fa_pair({N,A}, Ctxt); format_1(#k_seq{arg=A,body=B}, Ctxt) -> |