Commit 58cdce54 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Need to always filter out !-names

parent b4094e4e
...@@ -552,7 +552,10 @@ BoxedDict* getLocals(bool only_user_visible) { ...@@ -552,7 +552,10 @@ BoxedDict* getLocals(bool only_user_visible) {
} }
for (const auto& p : cf->location_map->names) { for (const auto& p : cf->location_map->names) {
if (only_user_visible && (p.first[0] == '#' || p.first[0] == '!')) if (p.first[0] == '!')
continue;
if (only_user_visible && p.first[0] == '#')
continue; continue;
if (is_undefined.count(p.first)) if (is_undefined.count(p.first))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment