Mercurial > hg
changeset 34439:88e83a618de0
cext: put case statements on separate line
This seems to be the prevailing style, even though it is a bit more
verbose for very simple switch statements.
Differential Revision: https://phab.mercurial-scm.org/D909
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Mon, 02 Oct 2017 19:09:52 +0100 |
parents | b90e8da190da |
children | 7ed0750c71a1 |
files | mercurial/cext/charencode.c |
diffstat | 1 files changed, 14 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/cext/charencode.c Mon Oct 02 19:06:00 2017 +0100 +++ b/mercurial/cext/charencode.c Mon Oct 02 19:09:52 2017 +0100 @@ -319,13 +319,20 @@ static char jsonescapechar2(char c) { switch (c) { - case '\b': return 'b'; - case '\t': return 't'; - case '\n': return 'n'; - case '\f': return 'f'; - case '\r': return 'r'; - case '"': return '"'; - case '\\': return '\\'; + case '\b': + return 'b'; + case '\t': + return 't'; + case '\n': + return 'n'; + case '\f': + return 'f'; + case '\r': + return 'r'; + case '"': + return '"'; + case '\\': + return '\\'; } return '\0'; /* should not happen */ }