diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-31 03:36:37 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-31 03:36:37 +0300 |
commit | 1f07b7e3c31b730853ec98a12dd2c7f9c70347c3 (patch) | |
tree | 23ea9a86f2e651e076d48c66fc6f344b4584b3f2 /py/vm.c | |
parent | 3dfa76cb85faa92a7301de686ec8d6b7666027f7 (diff) | |
download | micropython-1f07b7e3c31b730853ec98a12dd2c7f9c70347c3.tar.gz micropython-1f07b7e3c31b730853ec98a12dd2c7f9c70347c3.zip |
py: Reformat few long functions argument lists for clarity.
Diffstat (limited to 'py/vm.c')
-rw-r--r-- | py/vm.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -103,7 +103,8 @@ typedef enum { currently_in_except_block = MP_TAGPTR_TAG(exc_sp->val_sp); /* restore previous state */ \ exc_sp--; /* pop back to previous exception handler */ -mp_vm_return_kind_t mp_execute_bytecode(const byte *code, const mp_obj_t *args, uint n_args, const mp_obj_t *args2, uint n_args2, mp_obj_t *ret) { +mp_vm_return_kind_t mp_execute_bytecode(const byte *code, const mp_obj_t *args, uint n_args, + const mp_obj_t *args2, uint n_args2, mp_obj_t *ret) { const byte *ip = code; // get code info size, and skip line number table |