aboutsummaryrefslogtreecommitdiff
path: root/src/ldebug.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ldebug.js')
-rw-r--r--src/ldebug.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ldebug.js b/src/ldebug.js
index 532fd9c..dbd546d 100644
--- a/src/ldebug.js
+++ b/src/ldebug.js
@@ -116,7 +116,7 @@ const findlocal = function(L, ci, n) {
base = ci.funcOff + 1;
if (name === null) { /* no 'standard' name? */
- let limit = ci === L.ci ? L.top : ci.next.func;
+ let limit = ci === L.ci ? L.top : ci.next.funcOff;
if (limit - base >= n && n > 0) /* is 'n' inside 'ci' stack? */
name = defs.to_luastring("(*temporary)", true); /* generic name for any valid slot */
else