py: Rename and reorder parameters in emit_make_function/closure.
In preparation for implementing default keyword arguments.
diff --git a/py/emit.h b/py/emit.h
index 26672ab..0d95b69 100644
--- a/py/emit.h
+++ b/py/emit.h
@@ -97,8 +97,8 @@
void (*build_slice)(emit_t *emit, int n_args);
void (*unpack_sequence)(emit_t *emit, int n_args);
void (*unpack_ex)(emit_t *emit, int n_left, int n_right);
- void (*make_function)(emit_t *emit, scope_t *scope, int n_dict_params, int n_default_params);
- void (*make_closure)(emit_t *emit, scope_t *scope, int n_dict_params, int n_default_params);
+ void (*make_function)(emit_t *emit, scope_t *scope, uint n_pos_defaults, uint n_kw_defaults);
+ void (*make_closure)(emit_t *emit, scope_t *scope, uint n_pos_defaults, uint n_kw_defaults);
void (*call_function)(emit_t *emit, int n_positional, int n_keyword, bool have_star_arg, bool have_dbl_star_arg);
void (*call_method)(emit_t *emit, int n_positional, int n_keyword, bool have_star_arg, bool have_dbl_star_arg);
void (*return_value)(emit_t *emit);