# HG changeset patch # User Michael Albinus # Date 1285591466 -7200 # Node ID 1f02266d75ef646dc085ea6570dd07027442012b # Parent a14b02ae14136b7393d98353e7fc2108ecb55434 * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0". (Bug#7113) diff -r a14b02ae1413 -r 1f02266d75ef src/ChangeLog --- a/src/ChangeLog Mon Sep 27 10:59:16 2010 +0200 +++ b/src/ChangeLog Mon Sep 27 14:44:26 2010 +0200 @@ -1,6 +1,6 @@ 2010-09-27 Michael Albinus - * dbusbind.c (syms_of_dbusbind): Unset $DBUS_FATAL_WARNINGS. + * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0". (Bug#7113) 2010-09-26 Jan Djärv diff -r a14b02ae1413 -r 1f02266d75ef src/dbusbind.c --- a/src/dbusbind.c Mon Sep 27 10:59:16 2010 +0200 +++ b/src/dbusbind.c Mon Sep 27 14:44:26 2010 +0200 @@ -2130,10 +2130,12 @@ 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. */ #else Vdbus_debug = Qnil; /* We do not want to abort. */ - unsetenv ("DBUS_FATAL_WARNINGS"); + setenv ("DBUS_FATAL_WARNINGS", 0, 1); #endif Fprovide (intern_c_string ("dbusbind"), Qnil);