diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-31 21:05:39 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-31 21:05:39 +0200 |
commit | dc5f240cf358edaf8191f5a36f9066b0f0817462 (patch) | |
tree | a185cb4126077dc8cd843cdba77d8a5bba1d9fdc /interpret.h | |
parent | ccb220159bbbc45aac0572c7ca1d3f0f2247d1f5 (diff) | |
parent | a89bd16ff78c74513461af3f676d87d4eb9cfd3c (diff) | |
download | egawk-dc5f240cf358edaf8191f5a36f9066b0f0817462.tar.gz egawk-dc5f240cf358edaf8191f5a36f9066b0f0817462.tar.bz2 egawk-dc5f240cf358edaf8191f5a36f9066b0f0817462.zip |
Merge branch 'gawk-4.0-stable', minor fixes after exe merge.
Diffstat (limited to 'interpret.h')
-rw-r--r-- | interpret.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interpret.h b/interpret.h index 66f5b0de..67a702e3 100644 --- a/interpret.h +++ b/interpret.h @@ -852,7 +852,7 @@ match_re: if (t1->stlen > 0) { /* retrieve function definition node */ f = pc->func_body; - if (f != NULL && STREQ(f->vname, t1->stptr)) { + if (f != NULL && strcmp(f->vname, t1->stptr) == 0) { /* indirect var hasn't been reassigned */ goto func_call; |