[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r102202: Fix some declarations.
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r102202: Fix some declarations. |
Date: |
Sun, 31 Oct 2010 23:13:43 -0700 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 102202
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sun 2010-10-31 23:13:43 -0700
message:
Fix some declarations.
* lisp/gnus/nnimap.el (gnutls-negotiate):
* lisp/gnus/nntp.el (netrc-parse): Fix declarations.
* lisp/faces.el (xw-defined-colors, x-setup-function-keys):
* lisp/mouse-sel.el (x-select-text):
* lisp/term/w32console.el (x-setup-function-keys): Update declarations.
modified:
lisp/ChangeLog
lisp/faces.el
lisp/gnus/ChangeLog
lisp/gnus/nnimap.el
lisp/gnus/nntp.el
lisp/mouse-sel.el
lisp/term/w32console.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2010-11-01 06:00:04 +0000
+++ b/lisp/ChangeLog 2010-11-01 06:13:43 +0000
@@ -1,5 +1,9 @@
2010-11-01 Glenn Morris <address@hidden>
+ * faces.el (xw-defined-colors, x-setup-function-keys):
+ * mouse-sel.el (x-select-text):
+ * term/w32console.el (x-setup-function-keys): Update declarations.
+
* progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare.
* textmodes/ispell.el (comment-add): Declare.
=== modified file 'lisp/faces.el'
--- a/lisp/faces.el 2010-10-24 18:43:31 +0000
+++ b/lisp/faces.el 2010-11-01 06:13:43 +0000
@@ -30,7 +30,7 @@
(eval-when-compile
(require 'cl))
-(declare-function xw-defined-colors "term/x-win" (&optional frame))
+(declare-function xw-defined-colors "term/common-win" (&optional frame))
(defvar help-xref-stack-item)
@@ -1957,7 +1957,7 @@
(list (cons 'cursor-color fg)))))))
(declare-function x-create-frame "xfns.c" (parms))
-(declare-function x-setup-function-keys "term/x-win" (frame))
+(declare-function x-setup-function-keys "term/common-win" (frame))
(defun x-create-frame-with-faces (&optional parameters)
"Create and return a frame with frame parameters PARAMETERS.
@@ -2570,5 +2570,4 @@
(provide 'faces)
-;; arch-tag: 19a4759f-2963-445f-b004-425b9aadd7d6
;;; faces.el ends here
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog 2010-11-01 03:58:53 +0000
+++ b/lisp/gnus/ChangeLog 2010-11-01 06:13:43 +0000
@@ -1,3 +1,8 @@
+2010-11-01 Glenn Morris <address@hidden>
+
+ * nnimap.el (gnutls-negotiate):
+ * nntp.el (netrc-parse): Fix declarations.
+
2010-11-01 Katsumi Yamaoka <address@hidden>
* gnus-util.el (gnus-string-match-p): New function, that is an alias to
=== modified file 'lisp/gnus/nnimap.el'
--- a/lisp/gnus/nnimap.el 2010-11-01 02:07:01 +0000
+++ b/lisp/gnus/nnimap.el 2010-11-01 06:13:43 +0000
@@ -299,7 +299,8 @@
(* 5 60)))
(nnimap-send-command "NOOP")))))))
-(declare-function gnutls-negotiate "subr" (fn file &optional arglist fileonly))
+(declare-function gnutls-negotiate "gnutls"
+ (proc type &optional priority-string trustfiles keyfiles))
(defun nnimap-open-connection (buffer)
(unless nnimap-keepalive-timer
=== modified file 'lisp/gnus/nntp.el'
--- a/lisp/gnus/nntp.el 2010-10-11 23:29:33 +0000
+++ b/lisp/gnus/nntp.el 2010-11-01 06:13:43 +0000
@@ -1,8 +1,8 @@
;;; nntp.el --- nntp access for Gnus
-;; Copyright (C) 1987, 1988, 1989, 1990, 1992, 1993,
-;; 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002,
-;; 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
Inc.
+;; Copyright (C) 1987, 1988, 1989, 1990, 1992, 1993, 1994, 1995, 1996,
+;; 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
+;; 2009, 2010 Free Software Foundation, Inc.
;; Author: Lars Magne Ingebrigtsen <address@hidden>
;; Keywords: news
@@ -1172,7 +1172,7 @@
reading."
(nntp-send-command "^.*\n" "MODE READER"))
-(declare-function netrc-parse "netrc" (file))
+(declare-function netrc-parse "netrc" (&optional file))
(declare-function netrc-machine "netrc"
(list machine &optional port defaultport))
(declare-function netrc-get "netrc" (alist type))
=== modified file 'lisp/mouse-sel.el'
--- a/lisp/mouse-sel.el 2010-09-02 10:17:02 +0000
+++ b/lisp/mouse-sel.el 2010-11-01 06:13:43 +0000
@@ -1,7 +1,7 @@
;;; mouse-sel.el --- multi-click selection support for Emacs 19
-;; Copyright (C) 1993, 1994, 1995, 2001, 2002, 2003, 2004,
-;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+;; Copyright (C) 1993, 1994, 1995, 2001, 2002, 2003, 2004, 2005, 2006,
+;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
;; Author: Mike Williams <address@hidden>
;; Keywords: mouse
@@ -299,7 +299,7 @@
SELECTION-THING-SYMBOL = name of variable where the current selection
type for this selection should be stored.")
-(declare-function x-select-text "term/x-win" (text))
+(declare-function x-select-text "term/common-win" (text))
(defvar mouse-sel-set-selection-function
(if (eq mouse-sel-default-bindings 'interprogram-cut-paste)
@@ -314,7 +314,7 @@
SELECTION, the name of the selection concerned, and
VALUE, the text to store.
-This sets the selection, unless `mouse-sel-default-bindings'
+This sets the selection, unless `mouse-sel-default-bindings'
is `interprogram-cut-paste'.")
(declare-function x-selection-value "term/x-win" ())
@@ -749,5 +749,4 @@
(provide 'mouse-sel)
-;; arch-tag: 86e6c73f-deaa-48d3-a24e-c565fda1f7d7
;;; mouse-sel.el ends here
=== modified file 'lisp/term/w32console.el'
--- a/lisp/term/w32console.el 2010-01-13 08:35:10 +0000
+++ b/lisp/term/w32console.el 2010-11-01 06:13:43 +0000
@@ -45,7 +45,7 @@
("white" 15 65535 65535 65535))
"A list of VGA console colors, their indices and 16-bit RGB values.")
-(declare-function x-setup-function-keys "w32-fns" (frame))
+(declare-function x-setup-function-keys "term/common-win" (frame))
(defun terminal-init-w32console ()
"Terminal initialization function for w32 console."
@@ -62,4 +62,4 @@
(tty-set-up-initial-frame-faces)
(run-hooks 'terminal-init-w32-hook))
-;; arch-tag: 3195fd5e-ab86-4a46-b1dc-4f7a8c8deff3
+;;; w32console.el ends here
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r102202: Fix some declarations.,
Glenn Morris <=