emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108099: Silence byte-compiler warnin


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108099: Silence byte-compiler warnings.
Date: Wed, 02 May 2012 13:38:01 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 108099
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Wed 2012-05-02 13:38:01 +0200
message:
  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.
modified:
  lisp/ChangeLog
  lisp/notifications.el
  lisp/term/linux.el
  lisp/term/screen.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-05-02 10:57:03 +0000
+++ b/lisp/ChangeLog    2012-05-02 11:38:01 +0000
@@ -1,3 +1,9 @@
+2012-05-02  Juanma Barranquero  <address@hidden>
+
+       * notifications.el (dbus-debug):
+       * term/linux.el (gpm-mouse-enable):
+       * term/screen.el (xterm-register-default-colors): Declare.
+
 2012-05-02  Chong Yidong  <address@hidden>
 
        * allout.el (allout-exposure-change-functions)

=== modified file 'lisp/notifications.el'
--- a/lisp/notifications.el     2012-04-24 21:47:24 +0000
+++ b/lisp/notifications.el     2012-05-02 11:38:01 +0000
@@ -173,7 +173,7 @@
                  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 @@
                     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:

=== modified file 'lisp/term/linux.el'
--- a/lisp/term/linux.el        2012-05-01 06:59:34 +0000
+++ b/lisp/term/linux.el        2012-05-02 11:38:01 +0000
@@ -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)

=== modified file 'lisp/term/screen.el'
--- a/lisp/term/screen.el       2012-05-01 06:59:34 +0000
+++ b/lisp/term/screen.el       2012-05-02 11:38:01 +0000
@@ -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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]