Merged revisions 64226 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r64226 | martin.v.loewis | 2008-06-13 09:47:47 +0200 (Fr, 13 Jun 2008) | 2 lines

  Make more symbols static.
........
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c
index 50c72c9..37b7ec1 100644
--- a/Modules/_localemodule.c
+++ b/Modules/_localemodule.c
@@ -387,7 +387,7 @@
 
 #ifdef HAVE_LANGINFO_H
 #define LANGINFO(X) {#X, X}
-struct langinfo_constant{
+static struct langinfo_constant{
 	char* name;
 	int value;
 } langinfo_constants[] =