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 /lisp/term | |
| 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.
Diffstat (limited to 'lisp/term')
| -rw-r--r-- | lisp/term/linux.el | 2 | ||||
| -rw-r--r-- | lisp/term/screen.el | 2 |
2 files changed, 4 insertions, 0 deletions
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. |