]> git.eshelyaron.com Git - emacs.git/commitdiff
* dbusbind.c (syms_of_dbusbind): Move putenv call ...
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 3 Oct 2010 09:23:07 +0000 (11:23 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 3 Oct 2010 09:23:07 +0000 (11:23 +0200)
(Fdbus_init_bus): ... here.  (Bug#7113)

src/ChangeLog
src/dbusbind.c

index e985c8f84cf32894134de6b9dddedfad8eac8f6c..156e64a1d45cb02b126614758d4d83bbcb6f5b1a 100644 (file)
@@ -1,3 +1,8 @@
+2010-10-03  Michael Albinus  <michael.albinus@gmx.de>
+
+       * dbusbind.c (syms_of_dbusbind): Move putenv call ...
+       (Fdbus_init_bus): ... here.  (Bug#7113)
+
 2010-10-03  Glenn Morris  <rgm@gnu.org>
 
        * buffer.c (before-change-functions, after-change-functions):
index f3a573d3bceda46155eda2a11662cf9cb8335c50..460cf52364e5cdf03b66d7582f09f126f70e4cf9 100644 (file)
@@ -854,6 +854,9 @@ This is an internal function, it shall not be used outside dbus.el.  */)
                                            NULL, (void*) XHASH (bus), NULL))
     XD_SIGNAL1 (build_string ("Cannot add watch functions"));
 
+  /* We do not want to abort.  */
+  putenv ("DBUS_FATAL_WARNINGS=0");
+
   /* Return.  */
   return Qnil;
 }
@@ -2130,12 +2133,11 @@ message arrives.  */);
     doc: /* If non-nil, debug messages of D-Bus bindings are raised.  */);
 #ifdef DBUS_DEBUG
   Vdbus_debug = Qt;
-  /* We can also set environment DBUS_VERBOSE=1 in order to see more
-     traces.  */
+  /* We can also set environment variable DBUS_VERBOSE=1 in order to
+     see more traces.  This requires libdbus-1 to be configured with
+     --enable-verbose-mode.  */
 #else
   Vdbus_debug = Qnil;
-  /* We do not want to abort.  */
-  putenv ("DBUS_FATAL_WARNINGS=0");
 #endif
 
   Fprovide (intern_c_string ("dbusbind"), Qnil);