mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-21 20:37:38 +00:00
* chartab.c (chartab_chars, chartab_bits): Now static.
This commit is contained in:
parent
a2cb4e6346
commit
38dfbee187
2 changed files with 4 additions and 2 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2011-04-11 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* chartab.c (chartab_chars, chartab_bits): Now static.
|
||||
|
||||
* charset.h (charset_iso_8859_1): Remove decl.
|
||||
* charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
|
||||
Now static.
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue