Re: [PATCH] drv_imap: linearize code

2013-01-04 Thread Oswald Buddenhagen
On Mon, Dec 31, 2012 at 02:17:38PM +0100, Nikola Pajkovsky wrote: > this change makes code more readable > that's subjective. i'd consider either variant if this was new code, but i'm not going to make such changes to existing code, unless the structure changes as a precondition of a "real" change

[PATCH] drv_imap: linearize code

2012-12-31 Thread Nikola Pajkovsky
this change makes code more readable old 'if' if (is_atom( tmp )) { } was inverted to if (!is_atom(tmp)) continue; and code is now correctly indented. Signed-off-by: Nikola Pajkovsky --- src/drv_imap.c | 115 +-