# HG changeset patch # User Augie Fackler # Date 1429646543 14400 # Node ID d0912876d7a79a4168bb353edecfdd7a88cd3cf8 # Parent 2bf152128d5937752e108e541e713b5fe2f0fd23 parsers: protect some case-folding tables from clang-format We want a slightly weird format here so that it's easier to read, but in order to preserve that we need to disable clang-format. Differential Revision: https://phab.mercurial-scm.org/D1168 diff -r 2bf152128d59 -r d0912876d7a7 mercurial/cext/charencode.c --- a/mercurial/cext/charencode.c Mon Sep 14 14:52:20 2015 -0400 +++ b/mercurial/cext/charencode.c Tue Apr 21 16:02:23 2015 -0400 @@ -23,6 +23,7 @@ #define PyInt_AS_LONG PyLong_AS_LONG #endif +/* clang-format off */ static const char lowertable[128] = { '\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07', '\x08', '\x09', '\x0a', '\x0b', '\x0c', '\x0d', '\x0e', '\x0f', @@ -64,6 +65,7 @@ '\x58', '\x59', '\x5a', /* x-z */ '\x7b', '\x7c', '\x7d', '\x7e', '\x7f' }; +/* clang-format on */ /* 1: no escape, 2: \, 6: \u */ static const uint8_t jsonlentable[256] = {