aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger/src
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2017-12-04 11:53:51 +0100
committerHans Bolinder <[email protected]>2017-12-04 11:53:51 +0100
commitd754c56939926cd67c73fe5cf46df955289ffd5d (patch)
tree2eaad7b2684eb5633c1be2da7439741de6cef6c0 /lib/debugger/src
parent2151b54d4d55291703ff95c4e7dfed23fc2b07c5 (diff)
parente73bb39ccac7edb24afb54d9d60835c539e23311 (diff)
downloadotp-d754c56939926cd67c73fe5cf46df955289ffd5d.tar.gz
otp-d754c56939926cd67c73fe5cf46df955289ffd5d.tar.bz2
otp-d754c56939926cd67c73fe5cf46df955289ffd5d.zip
Merge branch 'maint'
* maint: debugger: Do not quote variables and button names in windows
Diffstat (limited to 'lib/debugger/src')
-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([]) -> "";