(dbus-call-method, dbus-register-signal)
(dbus-debug): Move declarations outside eval-when-compile.
This commit is contained in:
parent
992c67c500
commit
95eafb14f3
2 changed files with 10 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue