aboutsummaryrefslogtreecommitdiffstats
path: root/interpret.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-05-12 22:40:14 +0300
committerArnold D. Robbins <arnold@skeeve.com>2016-05-12 22:40:14 +0300
commit330f73ad4bc9e2b54b1d77eb5988a945f0ffe55c (patch)
tree45057a68341808a496eae608ce047e60642101ec /interpret.h
parente2bfaff631c465275f8289385e95406d22a3aeda (diff)
parentd7b4254cbf5f70d430e21f4f8ca90e354e251bac (diff)
downloadegawk-330f73ad4bc9e2b54b1d77eb5988a945f0ffe55c.tar.gz
egawk-330f73ad4bc9e2b54b1d77eb5988a945f0ffe55c.tar.bz2
egawk-330f73ad4bc9e2b54b1d77eb5988a945f0ffe55c.zip
Merge branch 'master' into feature/cmake
Diffstat (limited to 'interpret.h')
-rw-r--r--interpret.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/interpret.h b/interpret.h
index f165ef70..3bb4532e 100644
--- a/interpret.h
+++ b/interpret.h
@@ -953,10 +953,7 @@ arrayfor:
awk_value_t result;
PUSH_CODE(pc);
- if (op == Op_ext_builtin)
- r = awk_value_to_node(pc->extfunc(arg_count, & result));
- else
- r = pc->builtin(arg_count);
+ r = awk_value_to_node(pc->extfunc(arg_count, & result));
(void) POP_CODE();
while (arg_count-- > 0) {
t1 = POP();