]> git.eshelyaron.com Git - emacs.git/commitdiff
* dbusbind.c (syms_of_dbusbind): Unset $DBUS_FATAL_WARNINGS.
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 27 Sep 2010 08:59:16 +0000 (10:59 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 27 Sep 2010 08:59:16 +0000 (10:59 +0200)
(Bug#7113)

src/ChangeLog
src/dbusbind.c

index 435c09f0ff81ac9724c6ec9229658c54e08ba534..380e8becc1fe4ed19256632815215853aefd22c3 100644 (file)
@@ -1,3 +1,8 @@
+2010-09-27  Michael Albinus  <michael.albinus@gmx.de>
+
+       * dbusbind.c (syms_of_dbusbind): Unset $DBUS_FATAL_WARNINGS.
+       (Bug#7113)
+
 2010-09-26  Jan Djärv  <jan.h.d@swipnet.se>
 
        * xgselect.c (xg_select): Clear file descriptors not set from
index f710741b5919c3154536dfd6c2a95622596f78ff..6fc5a9234221878c5661aa8a15734ff2a9f8b9cc 100644 (file)
@@ -2132,6 +2132,8 @@ message arrives.  */);
   Vdbus_debug = Qt;
 #else
   Vdbus_debug = Qnil;
+  /* We do not want to abort.  */
+  unsetenv ("DBUS_FATAL_WARNINGS");
 #endif
 
   Fprovide (intern_c_string ("dbusbind"), Qnil);