aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2017-12-01 14:54:04 +0100
committerHans Bolinder <[email protected]>2017-12-01 14:54:04 +0100
commit724e98307703d91a62f3bffcca352123f680257d (patch)
tree6c20f4a1e82d718913f2f56ac8d889c18716389a
parenta3af8c0cfbe88579c1bd2779860fa7980e219c0c (diff)
downloadotp-724e98307703d91a62f3bffcca352123f680257d.tar.gz
otp-724e98307703d91a62f3bffcca352123f680257d.tar.bz2
otp-724e98307703d91a62f3bffcca352123f680257d.zip
debugger: Do not quote variables and button names in windows
The bug was introduced in commit 7eaaf5.
-rw-r--r--lib/debugger/src/dbg_wx_win.erl2
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([]) -> "";