From 81ad89c46e5b53c7a0e91e56f972e43751ddeb3d Mon Sep 17 00:00:00 2001 From: "John R. Lenton" Date: Fri, 3 Jan 2014 02:32:40 +0000 Subject: [PATCH] untabified --- py/objlist.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/py/objlist.c b/py/objlist.c index b488a1964..e3596a5c7 100644 --- a/py/objlist.c +++ b/py/objlist.c @@ -46,18 +46,18 @@ static mp_obj_t list_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs) { } case RT_BINARY_OP_ADD: { - if (!MP_OBJ_IS_TYPE(rhs, &list_type)) { - return NULL; - } - mp_obj_list_t *p = rhs; - mp_obj_list_t *s = list_new(o->len + p->len); - for (int i = 0; i < o->len; i++) { - s->items[i] = o->items[i]; - } - for (int i = 0; i < p->len; i++) { - s->items[i+o->len] = p->items[i]; - } - return s; + if (!MP_OBJ_IS_TYPE(rhs, &list_type)) { + return NULL; + } + mp_obj_list_t *p = rhs; + mp_obj_list_t *s = list_new(o->len + p->len); + for (int i = 0; i < o->len; i++) { + s->items[i] = o->items[i]; + } + for (int i = 0; i < p->len; i++) { + s->items[i+o->len] = p->items[i]; + } + return s; } default: // op not supported