(dbus-call-method, dbus-register-signal)

(dbus-debug): Move declarations outside eval-when-compile.
This commit is contained in:
Dan Nicolaescu 2008-05-05 02:43:39 +00:00
parent 992c67c500
commit 95eafb14f3
2 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2008-05-05 Dan Nicolaescu <dann@ics.uci.edu>
* net/zeroconf.el (dbus-call-method, dbus-register-signal)
(dbus-debug): Move declarations outside eval-when-compile.
2008-05-04 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
* proced.el (proced-command-alist): Fix system-type values. Fix

View file

@ -104,10 +104,11 @@
;; disabled with configuration option "--without-dbus". Declare used
;; subroutines and variables of `dbus' therefore.
(eval-when-compile
(require 'cl)
(declare-function dbus-call-method "dbusbind.c")
(declare-function dbus-register-signal "dbusbind.c")
(defvar dbus-debug))
(require 'cl))
(declare-function dbus-call-method "dbusbind.c")
(declare-function dbus-register-signal "dbusbind.c")
(defvar dbus-debug)
(require 'dbus)