aboutsummaryrefslogtreecommitdiffstats
path: root/src/chartab.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-10 23:50:34 -0700
committerPaul Eggert2011-04-10 23:50:34 -0700
commit38dfbee187191f15de9e6a171eee8be5072db296 (patch)
tree89ee478773fdd336b6d38d7c8ccfbc9639437d4e /src/chartab.c
parenta2cb4e6346247e98aac57d83afabfdee334e5559 (diff)
downloademacs-38dfbee187191f15de9e6a171eee8be5072db296.tar.gz
emacs-38dfbee187191f15de9e6a171eee8be5072db296.zip
* chartab.c (chartab_chars, chartab_bits): Now static.
Diffstat (limited to 'src/chartab.c')
-rw-r--r--src/chartab.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chartab.c b/src/chartab.c
index 50c3fd7cb73..2f0e88bd404 100644
--- a/src/chartab.c
+++ b/src/chartab.c
@@ -36,7 +36,7 @@ const int chartab_size[4] =
36 36
37/* Number of characters each element of Nth level char-table 37/* Number of characters each element of Nth level char-table
38 covers. */ 38 covers. */
39const int chartab_chars[4] = 39static const int chartab_chars[4] =
40 { (1 << (CHARTAB_SIZE_BITS_1 + CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3)), 40 { (1 << (CHARTAB_SIZE_BITS_1 + CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3)),
41 (1 << (CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3)), 41 (1 << (CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3)),
42 (1 << CHARTAB_SIZE_BITS_3), 42 (1 << CHARTAB_SIZE_BITS_3),
@@ -44,7 +44,7 @@ const int chartab_chars[4] =
44 44
45/* Number of characters (in bits) each element of Nth level char-table 45/* Number of characters (in bits) each element of Nth level char-table
46 covers. */ 46 covers. */
47const int chartab_bits[4] = 47static const int chartab_bits[4] =
48 { (CHARTAB_SIZE_BITS_1 + CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3), 48 { (CHARTAB_SIZE_BITS_1 + CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3),
49 (CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3), 49 (CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3),
50 CHARTAB_SIZE_BITS_3, 50 CHARTAB_SIZE_BITS_3,