diff options
| author | Juanma Barranquero | 2012-05-02 13:38:01 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2012-05-02 13:38:01 +0200 |
| commit | 55a714795dbd59a16608d2b565e12fec5b5ba130 (patch) | |
| tree | 21d101bdfbb1184790bcf958848658f692ff962a | |
| parent | 069a7756f78b308730e862daf0a6711f4cd642db (diff) | |
| download | emacs-55a714795dbd59a16608d2b565e12fec5b5ba130.tar.gz emacs-55a714795dbd59a16608d2b565e12fec5b5ba130.zip | |
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.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/notifications.el | 4 | ||||
| -rw-r--r-- | lisp/term/linux.el | 2 | ||||
| -rw-r--r-- | lisp/term/screen.el | 2 |
4 files changed, 13 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d1a6cd0dcd2..c264cb6bf26 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-05-02 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * notifications.el (dbus-debug): | ||
| 4 | * term/linux.el (gpm-mouse-enable): | ||
| 5 | * term/screen.el (xterm-register-default-colors): Declare. | ||
| 6 | |||
| 1 | 2012-05-02 Chong Yidong <cyd@gnu.org> | 7 | 2012-05-02 Chong Yidong <cyd@gnu.org> |
| 2 | 8 | ||
| 3 | * allout.el (allout-exposure-change-functions) | 9 | * allout.el (allout-exposure-change-functions) |
diff --git a/lisp/notifications.el b/lisp/notifications.el index 83992834502..7a79d5f6754 100644 --- a/lisp/notifications.el +++ b/lisp/notifications.el | |||
| @@ -173,7 +173,7 @@ Various PARAMS can be set: | |||
| 173 | notification when an action has been invoked. | 173 | notification when an action has been invoked. |
| 174 | :transient When set the server will treat the notification as transient | 174 | :transient When set the server will treat the notification as transient |
| 175 | and by-pass the server's persistence capability, if it | 175 | and by-pass the server's persistence capability, if it |
| 176 | should exist. | 176 | should exist. |
| 177 | :x Specifies the X location on the screen that the notification | 177 | :x Specifies the X location on the screen that the notification |
| 178 | should point to. The \"y\" hint must also be specified. | 178 | should point to. The \"y\" hint must also be specified. |
| 179 | :y Specifies the Y location on the screen that the notification | 179 | :y Specifies the Y location on the screen that the notification |
| @@ -344,6 +344,8 @@ of another `notifications-notify' call." | |||
| 344 | notifications-close-notification-method | 344 | notifications-close-notification-method |
| 345 | :int32 id)) | 345 | :int32 id)) |
| 346 | 346 | ||
| 347 | (defvar dbus-debug) ; used in the macroexpansion of dbus-ignore-errors | ||
| 348 | |||
| 347 | (defun notifications-get-capabilities () | 349 | (defun notifications-get-capabilities () |
| 348 | "Return the capabilities of the notification server, a list of strings. | 350 | "Return the capabilities of the notification server, a list of strings. |
| 349 | The following capabilities can be expected: | 351 | The following capabilities can be expected: |
diff --git a/lisp/term/linux.el b/lisp/term/linux.el index e85c8d2ce0d..00bcdfdf542 100644 --- a/lisp/term/linux.el +++ b/lisp/term/linux.el | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | ;; The Linux console handles Latin-1 by default. | 1 | ;; The Linux console handles Latin-1 by default. |
| 2 | 2 | ||
| 3 | (declare-function gpm-mouse-enable "t-mouse" ()) | ||
| 4 | |||
| 3 | (defun terminal-init-linux () | 5 | (defun terminal-init-linux () |
| 4 | "Terminal initialization function for linux." | 6 | "Terminal initialization function for linux." |
| 5 | (unless (terminal-coding-system) | 7 | (unless (terminal-coding-system) |
diff --git a/lisp/term/screen.el b/lisp/term/screen.el index 678ed1f0ba0..d37a695086a 100644 --- a/lisp/term/screen.el +++ b/lisp/term/screen.el | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | ;; Treat a screen terminal similar to an xterm. | 1 | ;; Treat a screen terminal similar to an xterm. |
| 2 | (load "term/xterm") | 2 | (load "term/xterm") |
| 3 | 3 | ||
| 4 | (declare-function xterm-register-default-colors "xterm" ()) | ||
| 5 | |||
| 4 | (defun terminal-init-screen () | 6 | (defun terminal-init-screen () |
| 5 | "Terminal initialization function for screen." | 7 | "Terminal initialization function for screen." |
| 6 | ;; Use the xterm color initialization code. | 8 | ;; Use the xterm color initialization code. |