comparison lisp/net/dbus.el @ 97260:409001287195

* net/dbus.el (dbus-method-return-internal) (dbus-method-error-internal): Declare them with `declare-function'.
author Michael Albinus <michael.albinus@gmx.de>
date Mon, 04 Aug 2008 12:33:38 +0000
parents f7035abd999b
children d5e87cca37af
comparison
equal deleted inserted replaced
97259:067d03b2ec89 97260:409001287195
31 ;;; Code: 31 ;;; Code:
32 32
33 ;; D-Bus support in the Emacs core can be disabled with configuration 33 ;; D-Bus support in the Emacs core can be disabled with configuration
34 ;; option "--without-dbus". Declare used subroutines and variables. 34 ;; option "--without-dbus". Declare used subroutines and variables.
35 (declare-function dbus-call-method "dbusbind.c") 35 (declare-function dbus-call-method "dbusbind.c")
36 (declare-function dbus-method-return-internal "dbusbind.c")
37 (declare-function dbus-method-error-internal "dbusbind.c")
36 (declare-function dbus-register-signal "dbusbind.c") 38 (declare-function dbus-register-signal "dbusbind.c")
37 (defvar dbus-debug) 39 (defvar dbus-debug)
38 (defvar dbus-registered-functions-table) 40 (defvar dbus-registered-functions-table)
39 41
40 ;; Pacify byte compiler. 42 ;; Pacify byte compiler.