From 724e98307703d91a62f3bffcca352123f680257d Mon Sep 17 00:00:00 2001
From: Hans Bolinder <hasse@erlang.org>
Date: Fri, 1 Dec 2017 14:54:04 +0100
Subject: debugger: Do not quote variables and button names in windows

The bug was introduced in commit 7eaaf5.
---
 lib/debugger/src/dbg_wx_win.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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([]) -> "";
-- 
cgit v1.2.3