diff options
author | Hans Bolinder <[email protected]> | 2017-12-04 11:51:35 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2017-12-04 11:51:35 +0100 |
commit | e73bb39ccac7edb24afb54d9d60835c539e23311 (patch) | |
tree | dea99684ee9c3045e59b6baa441ce79a04ae2347 | |
parent | fbb3d973d98d19a88d926c86dc2ce95ef4f175e8 (diff) | |
parent | 724e98307703d91a62f3bffcca352123f680257d (diff) | |
download | otp-e73bb39ccac7edb24afb54d9d60835c539e23311.tar.gz otp-e73bb39ccac7edb24afb54d9d60835c539e23311.tar.bz2 otp-e73bb39ccac7edb24afb54d9d60835c539e23311.zip |
Merge branch 'hasse/debugger/fix_unicode/OTP-14802' into maint
* hasse/debugger/fix_unicode/OTP-14802:
debugger: Do not quote variables and button names in windows
-rw-r--r-- | lib/debugger/src/dbg_wx_win.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debugger/src/dbg_wx_win.erl b/lib/debugger/src/dbg_wx_win.erl index 9f59915476..f1298154ab 100644 --- a/lib/debugger/src/dbg_wx_win.erl +++ b/lib/debugger/src/dbg_wx_win.erl @@ -299,7 +299,7 @@ open_help(_Parent, HelpHtmlFile) -> %%-------------------------------------------------------------------- to_string(Atom) when is_atom(Atom) -> - io_lib:format("~tw", [Atom]); + atom_to_list(Atom); to_string(Integer) when is_integer(Integer) -> integer_to_list(Integer); to_string([]) -> ""; |