diff --git a/ChangeLog b/ChangeLog index b6af46baa..d2a9e13ca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sun Sep 2 11:10:42 2001 Owen Taylor + + * glib/gen-unicode-tables.pl glib/gunicomp.h + glib/gunichartables.h glib/giounix.c: Fix some variables that + should have been static. + 2001-08-30 Sebastian Wilhelmi * glib/gthread.h, glib/gthread.c: Add 'want_to_read' to diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index b6af46baa..d2a9e13ca 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,9 @@ +Sun Sep 2 11:10:42 2001 Owen Taylor + + * glib/gen-unicode-tables.pl glib/gunicomp.h + glib/gunichartables.h glib/giounix.c: Fix some variables that + should have been static. + 2001-08-30 Sebastian Wilhelmi * glib/gthread.h, glib/gthread.c: Add 'want_to_read' to diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index b6af46baa..d2a9e13ca 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Sun Sep 2 11:10:42 2001 Owen Taylor + + * glib/gen-unicode-tables.pl glib/gunicomp.h + glib/gunichartables.h glib/giounix.c: Fix some variables that + should have been static. + 2001-08-30 Sebastian Wilhelmi * glib/gthread.h, glib/gthread.c: Add 'want_to_read' to diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index b6af46baa..d2a9e13ca 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,9 @@ +Sun Sep 2 11:10:42 2001 Owen Taylor + + * glib/gen-unicode-tables.pl glib/gunicomp.h + glib/gunichartables.h glib/giounix.c: Fix some variables that + should have been static. + 2001-08-30 Sebastian Wilhelmi * glib/gthread.h, glib/gthread.c: Add 'want_to_read' to diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index b6af46baa..d2a9e13ca 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +Sun Sep 2 11:10:42 2001 Owen Taylor + + * glib/gen-unicode-tables.pl glib/gunicomp.h + glib/gunichartables.h glib/giounix.c: Fix some variables that + should have been static. + 2001-08-30 Sebastian Wilhelmi * glib/gthread.h, glib/gthread.c: Add 'want_to_read' to diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index b6af46baa..d2a9e13ca 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Sun Sep 2 11:10:42 2001 Owen Taylor + + * glib/gen-unicode-tables.pl glib/gunicomp.h + glib/gunichartables.h glib/giounix.c: Fix some variables that + should have been static. + 2001-08-30 Sebastian Wilhelmi * glib/gthread.h, glib/gthread.c: Add 'want_to_read' to diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index b6af46baa..d2a9e13ca 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Sun Sep 2 11:10:42 2001 Owen Taylor + + * glib/gen-unicode-tables.pl glib/gunicomp.h + glib/gunichartables.h glib/giounix.c: Fix some variables that + should have been static. + 2001-08-30 Sebastian Wilhelmi * glib/gthread.h, glib/gthread.c: Add 'want_to_read' to diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index b6af46baa..d2a9e13ca 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Sun Sep 2 11:10:42 2001 Owen Taylor + + * glib/gen-unicode-tables.pl glib/gunicomp.h + glib/gunichartables.h glib/giounix.c: Fix some variables that + should have been static. + 2001-08-30 Sebastian Wilhelmi * glib/gthread.h, glib/gthread.c: Add 'want_to_read' to diff --git a/glib/gen-unicode-tables.pl b/glib/gen-unicode-tables.pl index 5e140af02..920492493 100755 --- a/glib/gen-unicode-tables.pl +++ b/glib/gen-unicode-tables.pl @@ -892,7 +892,7 @@ sub output_special_case_table * other than the case of the codepoint, in the order [Ll],[Lu],[Lt], * separated and terminated by a double NUL. */ -guchar special_case_table[][$special_case_len] = { +static guchar special_case_table[][$special_case_len] = { EOT for $case (@special_cases) { @@ -1057,7 +1057,7 @@ sub output_composition_table # Output first singletons - print OUT "gushort compose_first_single[][2] = {\n"; + print OUT "static gushort compose_first_single[][2] = {\n"; $i = 0; for $record (@first_singletons) { print OUT ",\n" if $i++ > 0; @@ -1069,7 +1069,7 @@ sub output_composition_table # Output second singletons - print OUT "gushort compose_second_single[][2] = {\n"; + print OUT "static gushort compose_second_single[][2] = {\n"; $i = 0; for $record (@second_singletons) { print OUT ",\n" if $i++ > 0; @@ -1082,7 +1082,7 @@ sub output_composition_table # Output array of composition pairs print OUT <