summaryrefslogtreecommitdiff
path: root/py/objfun.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-05-10 10:36:38 +0100
committerDamien George <damien.p.george@gmail.com>2014-05-10 10:36:38 +0100
commit3417bc2f25c492f7551e35d14349d85a45122b43 (patch)
tree550e4a6b5350cedd8b89ee476f53d943712c7453 /py/objfun.c
parent6e8085b425a9d02ac3e204651e2c9d8de9a23a85 (diff)
py: Rename byte_code to bytecode everywhere.
bytecode is the more widely used. See issue #590.
Diffstat (limited to 'py/objfun.c')
-rw-r--r--py/objfun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objfun.c b/py/objfun.c
index b4cd796c7..f5fbf9580 100644
--- a/py/objfun.c
+++ b/py/objfun.c
@@ -378,7 +378,7 @@ continue2:;
DEBUG_printf("Calling: args=%p, n_args=%d, extra_args=%p, n_extra_args=%d\n", args, n_args, extra_args, n_extra_args);
dump_args(args, n_args);
dump_args(extra_args, n_extra_args);
- mp_vm_return_kind_t vm_return_kind = mp_execute_byte_code(self->bytecode, args, n_args, extra_args, n_extra_args, &result);
+ mp_vm_return_kind_t vm_return_kind = mp_execute_bytecode(self->bytecode, args, n_args, extra_args, n_extra_args, &result);
mp_globals_set(old_globals);
if (vm_return_kind == MP_VM_RETURN_NORMAL) {