diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-05-05 02:43:39 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-05-05 02:43:39 +0000 |
commit | 95eafb14f348d793d7e5064313e4be31b3cf36ca (patch) | |
tree | 80c8b64befdd699d458bca61f4c74cbae0ac0c67 /lisp/net/zeroconf.el | |
parent | 992c67c50040d58e87df16920cbbb000ca1d3358 (diff) | |
download | emacs-95eafb14f348d793d7e5064313e4be31b3cf36ca.tar.gz |
(dbus-call-method, dbus-register-signal)
(dbus-debug): Move declarations outside eval-when-compile.
Diffstat (limited to 'lisp/net/zeroconf.el')
-rw-r--r-- | lisp/net/zeroconf.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/net/zeroconf.el b/lisp/net/zeroconf.el index a3445ead37d..b3db605403c 100644 --- a/lisp/net/zeroconf.el +++ b/lisp/net/zeroconf.el @@ -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) |