emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] scratch/dbusbind-type-tests 88ef231: dbusbind: Fix typo in


From: Daiki Ueno
Subject: [Emacs-diffs] scratch/dbusbind-type-tests 88ef231: dbusbind: Fix typo in cd77eaeb
Date: Wed, 02 Sep 2015 07:48:06 +0000

branch: scratch/dbusbind-type-tests
commit 88ef2317725a4597a37f9f1094feecbb3cf33971
Author: Daiki Ueno <address@hidden>
Commit: Daiki Ueno <address@hidden>

    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.
---
 src/dbusbind.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/dbusbind.c b/src/dbusbind.c
index f379df9..523a934 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;
     }
 }
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]