summaryrefslogtreecommitdiff
path: root/x11/gnome-libs/files/patch-bl
blob: 4944ca278bb8cc880a43ffc7e5362081254753aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
--- libgnomeui/gnome-init.c.orig	Tue May 14 06:32:19 2002
+++ libgnomeui/gnome-init.c	Tue Jul 16 00:33:12 2002
@@ -205,32 +205,8 @@
 	switch(reason) {
 	case POPT_CALLBACK_REASON_PRE:
                 {
-                        char *ctype, *old_ctype = NULL;
-                        gboolean ctype_set;
-
                         gnome_segv_setup (FALSE);
-                        ctype = setlocale (LC_CTYPE, NULL);
-
-                        if (ctype && !strcmp(ctype, "C")) {
-                                old_ctype = g_strdup (getenv ("LC_CTYPE"));
-                                putenv ("LC_CTYPE=en_US");
-                                ctype_set = TRUE;
-                        } else
-                                ctype_set = FALSE;
-
                         gtk_set_locale ();
-
-                        if (ctype_set) {
-                                char *setme;
-
-                                if (old_ctype) {
-                                        setme = g_strconcat ("LC_CTYPE=", old_ctype, NULL);
-                                        g_free(old_ctype);
-                                } else
-                                        setme = "LC_CTYPE=";
-
-                                putenv (setme);
-                        }
                         client = gnome_master_client();
                 }
 		break;