aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger/src/dbg_istk.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2011-03-22 08:53:57 +0100
committerBjörn Gustavsson <[email protected]>2011-08-16 08:58:47 +0200
commit704d3240cd05ecc1218547a493fab80f99c8e2fd (patch)
treed6137f80edb7683e6a9f64f50188b7056685ef86 /lib/debugger/src/dbg_istk.erl
parent2cbf01d49adda893018a9fbeb76c5e12b57bc3c5 (diff)
downloadotp-704d3240cd05ecc1218547a493fab80f99c8e2fd.tar.gz
otp-704d3240cd05ecc1218547a493fab80f99c8e2fd.tar.bz2
otp-704d3240cd05ecc1218547a493fab80f99c8e2fd.zip
ieval record: Rename the misnamed 'last_call' field to 'top'
The 'last_call' is badly named. What is means is that the next call will leave intepreted code.
Diffstat (limited to 'lib/debugger/src/dbg_istk.erl')
-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 8331f46eb8..b852e1f8fd 100644
--- a/lib/debugger/src/dbg_istk.erl
+++ b/lib/debugger/src/dbg_istk.erl
@@ -61,7 +61,7 @@ init(Stack) ->
%% false - nothing is pushed
%% Whenever a function returns, the corresponding call frame is popped.
-push(MFA, Bs, #ieval{level=Le,module=Cm,line=Li,last_call=Lc}) ->
+push(MFA, Bs, #ieval{level=Le,module=Cm,line=Li,top=Lc}) ->
Entry = #e{level=Le,mfa=MFA,cm=Cm,line=Li,bindings=Bs},
case get(trace_stack) of
false -> ignore;