diff --git a/ChangeLog b/ChangeLog index 55b83c6edd..7157956fe8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Tue Oct 19 09:46:49 1999 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE + to determine the locale for fontsets, not LC_MESSAGES; + the user may want English messages with a handling + for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR + will still be broken) + Tue Oct 19 20:36:42 1999 Changwoo Ryu * gtk/gtkrc.ko: Fixed the wrong number of "*"'s. diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 55b83c6edd..7157956fe8 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,11 @@ +Tue Oct 19 09:46:49 1999 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE + to determine the locale for fontsets, not LC_MESSAGES; + the user may want English messages with a handling + for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR + will still be broken) + Tue Oct 19 20:36:42 1999 Changwoo Ryu * gtk/gtkrc.ko: Fixed the wrong number of "*"'s. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 55b83c6edd..7157956fe8 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,11 @@ +Tue Oct 19 09:46:49 1999 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE + to determine the locale for fontsets, not LC_MESSAGES; + the user may want English messages with a handling + for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR + will still be broken) + Tue Oct 19 20:36:42 1999 Changwoo Ryu * gtk/gtkrc.ko: Fixed the wrong number of "*"'s. diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 55b83c6edd..7157956fe8 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,11 @@ +Tue Oct 19 09:46:49 1999 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE + to determine the locale for fontsets, not LC_MESSAGES; + the user may want English messages with a handling + for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR + will still be broken) + Tue Oct 19 20:36:42 1999 Changwoo Ryu * gtk/gtkrc.ko: Fixed the wrong number of "*"'s. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 55b83c6edd..7157956fe8 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,11 @@ +Tue Oct 19 09:46:49 1999 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE + to determine the locale for fontsets, not LC_MESSAGES; + the user may want English messages with a handling + for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR + will still be broken) + Tue Oct 19 20:36:42 1999 Changwoo Ryu * gtk/gtkrc.ko: Fixed the wrong number of "*"'s. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 55b83c6edd..7157956fe8 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,11 @@ +Tue Oct 19 09:46:49 1999 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE + to determine the locale for fontsets, not LC_MESSAGES; + the user may want English messages with a handling + for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR + will still be broken) + Tue Oct 19 20:36:42 1999 Changwoo Ryu * gtk/gtkrc.ko: Fixed the wrong number of "*"'s. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 55b83c6edd..7157956fe8 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,11 @@ +Tue Oct 19 09:46:49 1999 Owen Taylor + + * gtk/gtkrc.c (gtk_rc_init): Always use LC_CTYPE + to determine the locale for fontsets, not LC_MESSAGES; + the user may want English messages with a handling + for non-English languages. (LC_CTYPE=ru_RU LC_MESSAGES=fr_FR + will still be broken) + Tue Oct 19 20:36:42 1999 Changwoo Ryu * gtk/gtkrc.ko: Fixed the wrong number of "*"'s. diff --git a/gtk/gtkrc.c b/gtk/gtkrc.c index ffd9649a0c..660a77f93a 100644 --- a/gtk/gtkrc.c +++ b/gtk/gtkrc.c @@ -450,11 +450,7 @@ gtk_rc_init (void) { gint length; -#if defined (HAVE_LC_MESSAGES) && !defined (X_LOCALE) - char *locale = setlocale (LC_MESSAGES, NULL); -#else char *locale = setlocale (LC_CTYPE, NULL); -#endif char *p; initted = TRUE;