aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-12-01 21:53:06 +0200
committerArnold D. Robbins <arnold@skeeve.com>2010-12-01 21:53:06 +0200
commit02ea2bf02041509c78708b904c85093b2837acde (patch)
tree4b5803e1ee32bae0f5998269ddd6914bae043aa7 /eval.c
parent5712ad9b220c097371f0e83d09c3b1ce5e511c55 (diff)
downloadegawk-02ea2bf02041509c78708b904c85093b2837acde.tar.gz
egawk-02ea2bf02041509c78708b904c85093b2837acde.tar.bz2
egawk-02ea2bf02041509c78708b904c85093b2837acde.zip
Lots of documentation changes.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/eval.c b/eval.c
index eb5e40e5..db72a180 100644
--- a/eval.c
+++ b/eval.c
@@ -2436,9 +2436,8 @@ match_re:
if (t1->stlen > 0) {
/* retrieve function definition node */
f = pc->func_body;
- if (f != NULL
- && STREQ(f->vname, t1->stptr) /* indirect var hasn't been reassigned */
- )
+ if (f != NULL && STREQ(f->vname, t1->stptr))
+ /* indirect var hasn't been reassigned */
goto func_call;
f = lookup(t1->stptr);
}