diff options
Diffstat (limited to 'src/dbusbind.c')
-rw-r--r-- | src/dbusbind.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dbusbind.c b/src/dbusbind.c index 6fc5a923422..0b5d32ce467 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c @@ -2130,10 +2130,12 @@ 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. */ #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); |