]> git.kaiwu.me - njs.git/commitdiff
Style in nxt_unicode_upper_case.pl and nxt_unicode_upper_case.h.
authorValentin Bartenev <vbart@nginx.com>
Sat, 27 Jul 2019 00:51:48 +0000 (03:51 +0300)
committerValentin Bartenev <vbart@nginx.com>
Sat, 27 Jul 2019 00:51:48 +0000 (03:51 +0300)
nxt/nxt_unicode_upper_case.h
nxt/nxt_unicode_upper_case.pl

index 2ecfe1f9682e8a63b14d1debaebcfcd781b0d06e..e4f3eaea1037ee347cac56216f8353cae2fa7abb 100644 (file)
@@ -4,9 +4,9 @@
  * 16496 bytes on 32-bit platforms, 18576 bytes on 64-bit platforms.
  */
 
-#define NXT_UNICODE_MAX_UPPER_CASE   0x1044f
+#define NXT_UNICODE_MAX_UPPER_CASE  0x1044f
 
-#define NXT_UNICODE_BLOCK_SIZE       128
+#define NXT_UNICODE_BLOCK_SIZE      128
 
 
 static const uint32_t  nxt_unicode_upper_case_block_000[128]
index 99abcb2a0da0d1abcafae04e13f3f6930ece2c30..05d2260a1057051163a4cb46e56423b02cc08957 100755 (executable)
@@ -48,8 +48,8 @@ printf("\n/*\n" .
        ($blocks - 1) * BLOCK_SIZE * 4 + $last_block_size + $max_block * 4,
        ($blocks - 1) * BLOCK_SIZE * 4 + $last_block_size + $max_block * 8);
 
-printf("#define NXT_UNICODE_MAX_UPPER_CASE   0x%05x\n\n", $max_upper_case);
-printf("#define NXT_UNICODE_BLOCK_SIZE       %d\n\n\n", BLOCK_SIZE);
+printf("#define NXT_UNICODE_MAX_UPPER_CASE  0x%05x\n\n", $max_upper_case);
+printf("#define NXT_UNICODE_BLOCK_SIZE      %d\n\n\n", BLOCK_SIZE);
 
 
 for my $block (sort { $a <=> $b } keys %blocks) {