diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-01-25 11:55:54 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-01-25 11:55:54 +0200 |
commit | eea77e4b393b7c1841da887f590b5f5eab964ad4 (patch) | |
tree | eb0e955851fbdd85250e12fbfaa5ec390d1088f9 /debug.c | |
parent | 48f4822b0602c44aacd418f36ff35645e8379b8e (diff) | |
parent | fda51ca6fd0d9ad93bead9887ded0b07c90680fb (diff) | |
download | egawk-eea77e4b393b7c1841da887f590b5f5eab964ad4.tar.gz egawk-eea77e4b393b7c1841da887f590b5f5eab964ad4.tar.bz2 egawk-eea77e4b393b7c1841da887f590b5f5eab964ad4.zip |
Merge branch 'feature/fix-ns-memleak'
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1032,7 +1032,7 @@ NODE *find_symbol(const char *name, char **pname) if (prog_running) r = find_param(name, cur_frame, pname); if (r == NULL) - r = lookup(name, false); // for now, require fully qualified name + r = lookup(name); // for now, require fully qualified name if (r == NULL) fprintf(out_fp, _("no symbol `%s' in current context\n"), name); return r; @@ -5608,7 +5608,7 @@ do_eval(CMDARG *arg, int cmd ATTRIBUTE_UNUSED) return false; } - f = lookup("@eval", false); + f = lookup("@eval"); assert(f != NULL); if (this_func == NULL) { /* in main */ /* do a function call */ |