This revision was automatically updated to reflect the committed changes.
Closed by commit rHG88e83a618de0: cext: put case statements on separate line 
(authored by indygreg, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D909?vs=2348&id=2389

REVISION DETAIL
  https://phab.mercurial-scm.org/D909

AFFECTED FILES
  mercurial/cext/charencode.c

CHANGE DETAILS

diff --git a/mercurial/cext/charencode.c b/mercurial/cext/charencode.c
--- a/mercurial/cext/charencode.c
+++ b/mercurial/cext/charencode.c
@@ -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 */
 }



To: indygreg, #hg-reviewers, quark
Cc: mercurial-devel
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to