diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2017-10-20 15:07:57 -0700 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2017-10-20 15:07:57 -0700 |
| commit | b909dce5d11e1b9ae15ae68ec8646e162c30b56d (patch) | |
| tree | 3adef40acc0c753b838ffc9b93443853482e5726 /nomsu.lua | |
| parent | 9f61e7f90d4729a9afba1c08d6ce45af460e5d8f (diff) | |
Fix for callstack.
Diffstat (limited to 'nomsu.lua')
| -rw-r--r-- | nomsu.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -348,7 +348,7 @@ do local _list_0 = self.callstack for _index_0 = 1, #_list_0 do local caller = _list_0[_index_0] - if whiteset[caller[1]] then + if caller ~= "#macro" and whiteset[caller[1]] then return true end end @@ -369,7 +369,7 @@ do local _list_0 = self.callstack for _index_0 = 1, #_list_0 do local caller = _list_0[_index_0] - if whiteset[caller[1]] then + if caller ~= "#macro" and whiteset[caller[1]] then return true end end |
