diff options
author | Hans Bolinder <[email protected]> | 2017-06-09 10:39:08 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2017-06-09 10:39:08 +0200 |
commit | 50b77f66ee3fd99323848bc70415ef31f598c639 (patch) | |
tree | e378a0d1ec4a2bd3389f71992226992f1c4347af | |
parent | ade1f603991d416b7fcec0144be7b4b889ab2999 (diff) | |
download | otp-50b77f66ee3fd99323848bc70415ef31f598c639.tar.gz otp-50b77f66ee3fd99323848bc70415ef31f598c639.tar.bz2 otp-50b77f66ee3fd99323848bc70415ef31f598c639.zip |
stdlib: Improve Unicode handling of the Erlang parser
-rw-r--r-- | lib/stdlib/src/erl_parse.yrl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/src/erl_parse.yrl b/lib/stdlib/src/erl_parse.yrl index 733932e711..6e72d64acc 100644 --- a/lib/stdlib/src/erl_parse.yrl +++ b/lib/stdlib/src/erl_parse.yrl @@ -1097,12 +1097,12 @@ build_compat_constraint({atom, _, is_subtype}, [{var, _, _}=LHS, Type]) -> build_compat_constraint({atom, _, is_subtype}, [LHS, _Type]) -> ret_err(?anno(LHS), "bad type variable"); build_compat_constraint({atom, A, Atom}, _Types) -> - ret_err(A, io_lib:format("unsupported constraint ~w", [Atom])). + ret_err(A, io_lib:format("unsupported constraint ~tw", [Atom])). build_constraint({atom, _, is_subtype}, [{var, _, _}=LHS, Type]) -> build_constraint(LHS, Type); build_constraint({atom, A, Atom}, _Foo) -> - ret_err(A, io_lib:format("unsupported constraint ~w", [Atom])); + ret_err(A, io_lib:format("unsupported constraint ~tw", [Atom])); build_constraint({var, A, '_'}, _Types) -> ret_err(A, "bad type variable"); build_constraint(LHS, Type) -> @@ -1220,7 +1220,7 @@ attribute_farity_map(Args) -> -spec error_bad_decl(erl_anno:anno(), attributes()) -> no_return(). error_bad_decl(Anno, S) -> - ret_err(Anno, io_lib:format("bad ~w declaration", [S])). + ret_err(Anno, io_lib:format("bad ~tw declaration", [S])). farity_list({cons,_Ac,{op,_Ao,'/',{atom,_Aa,A},{integer,_Ai,I}},Tail}) -> [{A,I}|farity_list(Tail)]; |