aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2013-04-17 09:03:00 +0200
committerBjörn Gustavsson <[email protected]>2013-04-17 09:03:00 +0200
commitd988c8ebc8ec0349413a99ce1296905f83d87546 (patch)
tree82e8d2f413a2bf124d6483fd9d8e191233f62e63 /lib/debugger
parent74fdfd48d59393b6f0dfb53f343645133675c64b (diff)
parent05a646a0844e8cf25045bc9388094c799c21538d (diff)
downloadotp-d988c8ebc8ec0349413a99ce1296905f83d87546.tar.gz
otp-d988c8ebc8ec0349413a99ce1296905f83d87546.tar.bz2
otp-d988c8ebc8ec0349413a99ce1296905f83d87546.zip
Merge branch 'bjorn/fix-encoding/OTP-11041' into maint
* bjorn/fix-encoding/OTP-11041: Encode Erlang source files with non-ascii characters in UTF-8
Diffstat (limited to 'lib/debugger')
-rw-r--r--lib/debugger/src/dbg_istk.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debugger/src/dbg_istk.erl b/lib/debugger/src/dbg_istk.erl
index c6922a80e4..ced42a5f9f 100644
--- a/lib/debugger/src/dbg_istk.erl
+++ b/lib/debugger/src/dbg_istk.erl
@@ -78,7 +78,7 @@ push(Bs, #ieval{level=Le,module=Mod,function=Name,
pop() ->
case get(trace_stack) of
false -> ignore;
- _ -> % all ¦ no_tail
+ _ -> % all | no_tail
case get(?STACK) of
[_Entry|Entries] ->
put(?STACK, Entries);