From: Tomi Ollila Date: Tue, 24 Jan 2012 20:55:59 +0000 (+0200) Subject: uncrustify.cfg: label indent, some known types, not, # and ## X-Git-Tag: debian/0.12_rc1-1~157 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=9e701465ebb43bcd5a56155be404758976e66c1f;hp=9e701465ebb43bcd5a56155be404758976e66c1f uncrustify.cfg: label indent, some known types, not, # and ## Adjusted some uncrustify variables to get closer to prevailing style: * Label indent (for goto) relative to current indentation. * Registered GMimeObject and mime_node_t being as types. * Space after ! (not) operator. * No space after 'stringify' (#) preprosessor token. * No spacing change around ## (option not versatile enough). There are at least 3 cases where attention needs to be paid: * If there is newline between function name and open paren in function call, the paren (and args) are indented too far right. * #define HOUR (60 *MINUTE) -- i.e. no space after star (*). * void (*foo)(args) -- i.e no space between (name) and (args). ---