aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
parenta2cb4e6346247e98aac57d83afabfdee334e5559 (diff)
downloademacs-38dfbee187191f15de9e6a171eee8be5072db296.tar.gz
emacs-38dfbee187191f15de9e6a171eee8be5072db296.zip
* chartab.c (chartab_chars, chartab_bits): Now static.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/chartab.c4
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index baf0c1f10a1..03f4fcee063 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12011-04-11 Paul Eggert <eggert@cs.ucla.edu> 12011-04-11 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * chartab.c (chartab_chars, chartab_bits): Now static.
4
3 * charset.h (charset_iso_8859_1): Remove decl. 5 * charset.h (charset_iso_8859_1): Remove decl.
4 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump): 6 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
5 Now static. 7 Now static.
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,