aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/net
diff options
context:
space:
mode:
authorDan Nicolaescu2008-05-05 02:43:39 +0000
committerDan Nicolaescu2008-05-05 02:43:39 +0000
commit95eafb14f348d793d7e5064313e4be31b3cf36ca (patch)
tree80c8b64befdd699d458bca61f4c74cbae0ac0c67 /lisp/net
parent992c67c50040d58e87df16920cbbb000ca1d3358 (diff)
downloademacs-95eafb14f348d793d7e5064313e4be31b3cf36ca.tar.gz
emacs-95eafb14f348d793d7e5064313e4be31b3cf36ca.zip
(dbus-call-method, dbus-register-signal)
(dbus-debug): Move declarations outside eval-when-compile.
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/zeroconf.el9
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 @@
104;; disabled with configuration option "--without-dbus". Declare used 104;; disabled with configuration option "--without-dbus". Declare used
105;; subroutines and variables of `dbus' therefore. 105;; subroutines and variables of `dbus' therefore.
106(eval-when-compile 106(eval-when-compile
107 (require 'cl) 107 (require 'cl))
108 (declare-function dbus-call-method "dbusbind.c") 108
109 (declare-function dbus-register-signal "dbusbind.c") 109(declare-function dbus-call-method "dbusbind.c")
110 (defvar dbus-debug)) 110(declare-function dbus-register-signal "dbusbind.c")
111(defvar dbus-debug)
111 112
112(require 'dbus) 113(require 'dbus)
113 114