From: Daiki Ueno Date: Wed, 2 Sep 2015 07:45:14 +0000 (+0900) Subject: dbusbind: Fix typo in cd77eaeb X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=88ef2317725a4597a37f9f1094feecbb3cf33971;p=emacs.git dbusbind: Fix typo in cd77eaeb * src/dbusbind.c (xd_dbus_type_to_symbol): Return Qnil instead of DBUS_TYPE_INVALID, if the type is unknown. --- diff --git a/src/dbusbind.c b/src/dbusbind.c index f379df9e318..523a9343862 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c @@ -251,7 +251,7 @@ xd_dbus_type_to_symbol (int dtype) return QCdbus_type_dict_entry; default: - return DBUS_TYPE_INVALID; + return Qnil; } }