Silence byte-compiler warnings.

lisp/notifications.el (dbus-debug):
lisp/term/linux.el (gpm-mouse-enable):
lisp/term/screen.el (xterm-register-default-colors): Declare.
This commit is contained in:
Juanma Barranquero 2012-05-02 13:38:01 +02:00
parent 069a7756f7
commit 55a714795d
4 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2012-05-02 Juanma Barranquero <lekktu@gmail.com>
* notifications.el (dbus-debug):
* term/linux.el (gpm-mouse-enable):
* term/screen.el (xterm-register-default-colors): Declare.
2012-05-02 Chong Yidong <cyd@gnu.org>
* allout.el (allout-exposure-change-functions)

View file

@ -173,7 +173,7 @@ Various PARAMS can be set:
notification when an action has been invoked.
:transient When set the server will treat the notification as transient
and by-pass the server's persistence capability, if it
should exist.
should exist.
:x Specifies the X location on the screen that the notification
should point to. The \"y\" hint must also be specified.
:y Specifies the Y location on the screen that the notification
@ -344,6 +344,8 @@ of another `notifications-notify' call."
notifications-close-notification-method
:int32 id))
(defvar dbus-debug) ; used in the macroexpansion of dbus-ignore-errors
(defun notifications-get-capabilities ()
"Return the capabilities of the notification server, a list of strings.
The following capabilities can be expected:

View file

@ -1,5 +1,7 @@
;; The Linux console handles Latin-1 by default.
(declare-function gpm-mouse-enable "t-mouse" ())
(defun terminal-init-linux ()
"Terminal initialization function for linux."
(unless (terminal-coding-system)

View file

@ -1,6 +1,8 @@
;; Treat a screen terminal similar to an xterm.
(load "term/xterm")
(declare-function xterm-register-default-colors "xterm" ())
(defun terminal-init-screen ()
"Terminal initialization function for screen."
;; Use the xterm color initialization code.