aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2013-04-15 10:23:17 +0200
committerBjörn Gustavsson <[email protected]>2013-04-17 08:59:31 +0200
commit05a646a0844e8cf25045bc9388094c799c21538d (patch)
tree66e5cdd13e8b6dc8ba648927c84a576e1b659eff /lib/debugger
parent656b37f1b6fbc3611f5e0f8b8c0e4f61bef9092b (diff)
downloadotp-05a646a0844e8cf25045bc9388094c799c21538d.tar.gz
otp-05a646a0844e8cf25045bc9388094c799c21538d.tar.bz2
otp-05a646a0844e8cf25045bc9388094c799c21538d.zip
Encode Erlang source files with non-ascii characters in UTF-8
To ensure that 'master' compiles when we merge 'maint' to it, regardless of which encoding is default in 'master', all source files with non-ascii characters *must* have the encoding specified.
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);