aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dbusbind.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dbusbind.c b/src/dbusbind.c
index 46b8b04d15d..badf6b587d6 100644
--- a/src/dbusbind.c
+++ b/src/dbusbind.c
@@ -32,7 +32,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
32#define DBUS_NUM_MESSAGE_TYPES 5 32#define DBUS_NUM_MESSAGE_TYPES 5
33#endif 33#endif
34 34
35
36/* Some platforms define the symbol "interface", but we want to use it 35/* Some platforms define the symbol "interface", but we want to use it
37 * as a variable name below. */ 36 * as a variable name below. */
38 37
@@ -709,6 +708,7 @@ xd_append_arg (int dtype, Lisp_Object object, DBusMessageIter *iter)
709 708
710 if (XD_BASIC_DBUS_TYPE (dtype)) 709 if (XD_BASIC_DBUS_TYPE (dtype))
711 xd_append_basic_arg (dtype, object, iter); 710 xd_append_basic_arg (dtype, object, iter);
711
712 else /* Compound types. */ 712 else /* Compound types. */
713 { 713 {
714 714
@@ -809,6 +809,7 @@ xd_type_spec_to_signature (char *signature, Lisp_Object spec)
809 wrong_type_argument (intern ("D-Bus"), spec); 809 wrong_type_argument (intern ("D-Bus"), spec);
810 sprintf (signature, "%c", dtype); 810 sprintf (signature, "%c", dtype);
811 } 811 }
812
812 else /* Compound types. */ 813 else /* Compound types. */
813 { 814 {
814 char *subsig; 815 char *subsig;
@@ -881,6 +882,7 @@ xd_append_arg_with_type_spec (Lisp_Object spec, Lisp_Object object,
881 wrong_type_argument (intern ("D-Bus"), spec); 882 wrong_type_argument (intern ("D-Bus"), spec);
882 xd_append_basic_arg (dtype, object, iter); 883 xd_append_basic_arg (dtype, object, iter);
883 } 884 }
885
884 else /* Compound types. */ 886 else /* Compound types. */
885 { 887 {
886 char signature[DBUS_MAXIMUM_SIGNATURE_LENGTH]; 888 char signature[DBUS_MAXIMUM_SIGNATURE_LENGTH];
@@ -2005,9 +2007,7 @@ be called when the D-Bus reply message arrives. */);
2005 staticpro (&xd_registered_buses); 2007 staticpro (&xd_registered_buses);
2006 2008
2007 /* Add subfeature `:type'. */ 2009 /* Add subfeature `:type'. */
2008 subfeatures = pure_cons (pure_cons (QCdbus_type_type, pure_cons (Qt, Qnil)), 2010 subfeatures = Fcons (QCdbus_type_type, subfeatures);
2009 subfeatures);
2010
2011 Fprovide (intern_c_string ("dbusbind"), subfeatures); 2011 Fprovide (intern_c_string ("dbusbind"), subfeatures);
2012 2012
2013} 2013}