diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-10 23:50:34 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-04-10 23:50:34 -0700 |
commit | 38dfbee187191f15de9e6a171eee8be5072db296 (patch) | |
tree | 89ee478773fdd336b6d38d7c8ccfbc9639437d4e /src/chartab.c | |
parent | a2cb4e6346247e98aac57d83afabfdee334e5559 (diff) | |
download | emacs-38dfbee187191f15de9e6a171eee8be5072db296.tar.gz |
* chartab.c (chartab_chars, chartab_bits): Now static.
Diffstat (limited to 'src/chartab.c')
-rw-r--r-- | src/chartab.c | 4 |
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] = /* Number of characters each element of Nth level char-table covers. */ -const int chartab_chars[4] = +static const int chartab_chars[4] = { (1 << (CHARTAB_SIZE_BITS_1 + CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3)), (1 << (CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3)), (1 << CHARTAB_SIZE_BITS_3), @@ -44,7 +44,7 @@ const int chartab_chars[4] = /* Number of characters (in bits) each element of Nth level char-table covers. */ -const int chartab_bits[4] = +static const int chartab_bits[4] = { (CHARTAB_SIZE_BITS_1 + CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3), (CHARTAB_SIZE_BITS_2 + CHARTAB_SIZE_BITS_3), CHARTAB_SIZE_BITS_3, |