]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix error in last merge from branch.
authorChong Yidong <cyd@stupidchicken.com>
Mon, 1 Nov 2010 15:18:42 +0000 (11:18 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Mon, 1 Nov 2010 15:18:42 +0000 (11:18 -0400)
Remove 2010-10-25 commit by Michael Albinus to dbusbind.c, which is
not intended for trunk.

src/ChangeLog
src/dbusbind.c

index 868688f8c453f0e60a58b4a384ca0068ea9f65ed..c76c62124fc8223d33e4d33dd5fd2f7603f0b658 100644 (file)
        when aborting on GTK.  This requires using shut_down_emacs
        directly instead of Fkill_emacs.
 
-2010-10-31  Michael Albinus  <michael.albinus@gmx.de>
-
-       * dbusbind.c (Fdbus_call_method_asynchronously)
-       (Fdbus_register_signal, Fdbus_register_method): Check, whether
-       `dbus-registered-objects-table' is initialized.
-
 2010-10-29  Eli Zaretskii  <eliz@gnu.org>
 
        * emacs.c (main): Call syms_of_filelock unconditionally.
index beb1faaf4aaa70a73def252e8dd2883251eef844..683b7cb583b6889cacd446bfccf8a5c690530af1 100644 (file)
@@ -1232,10 +1232,6 @@ usage: (dbus-call-method-asynchronously BUS SERVICE PATH INTERFACE METHOD HANDLE
                    SDATA (interface),
                    SDATA (method));
 
-  /* Check dbus-registered-objects-table.  */
-  if (!HASH_TABLE_P (Vdbus_registered_objects_table))
-    XD_SIGNAL1 (build_string ("dbus.el is not loaded"));
-
   /* Open a connection to the bus.  */
   connection = xd_initialize (bus, TRUE);
 
@@ -1873,10 +1869,6 @@ usage: (dbus-register-signal BUS SERVICE PATH INTERFACE SIGNAL HANDLER &rest ARG
     wrong_type_argument (intern ("functionp"), handler);
   GCPRO6 (bus, service, path, interface, signal, handler);
 
-  /* Check dbus-registered-objects-table.  */
-  if (!HASH_TABLE_P (Vdbus_registered_objects_table))
-    XD_SIGNAL1 (build_string ("dbus.el is not loaded"));
-
   /* Retrieve unique name of service.  If service is a known name, we
      will register for the corresponding unique name, if any.  Signals
      are sent always with the unique name as sender.  Note: the unique
@@ -1989,10 +1981,6 @@ used for composing the returning D-Bus message.  */)
   /* TODO: We must check for a valid service name, otherwise there is
      a segmentation fault.  */
 
-  /* Check dbus-registered-objects-table.  */
-  if (!HASH_TABLE_P (Vdbus_registered_objects_table))
-    XD_SIGNAL1 (build_string ("dbus.el is not loaded"));
-
   /* Open a connection to the bus.  */
   connection = xd_initialize (bus, TRUE);