Add debug code to output environ.
authorHuang Peng <shawn.p.huang@gmail.com>
Fri, 12 Sep 2008 00:09:49 +0000 (08:09 +0800)
committerHuang Peng <shawn.p.huang@gmail.com>
Fri, 12 Sep 2008 00:09:49 +0000 (08:09 +0800)
client/gtk2/ibusim.c

index a078f64dc019e238135613354252b6446cf7fe98..8db53163db6fdd45740806d4918912f0fc6d00ee 100644 (file)
@@ -25,7 +25,6 @@
 #include "ibusimcontext.h"
 
 #define IBUS_LOCALDIR ""
-
 static const GtkIMContextInfo ibus_im_info = {
     "ibus",
     "iBus (Intelligent Input Bus)",
@@ -44,6 +43,14 @@ im_module_init (GTypeModule *type_module)
 {
     ibus_im_client_register_type(type_module);
     ibus_im_context_register_type(type_module);
+#if 0
+    gchar **p = environ;
+    extern gchar **environ;
+    while (*p != NULL) {
+        g_fprintf (stderr, "%s\n", *p);
+        p ++;
+    }
+#endif
 }
 
 void