diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/faces.el | 5 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/nnimap.el | 3 | ||||
| -rw-r--r-- | lisp/gnus/nntp.el | 8 | ||||
| -rw-r--r-- | lisp/mouse-sel.el | 9 | ||||
| -rw-r--r-- | lisp/term/w32console.el | 4 |
7 files changed, 23 insertions, 15 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b0e35abc58d..102e84d4cfa 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2010-11-01 Glenn Morris <rgm@gnu.org> | 1 | 2010-11-01 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * faces.el (xw-defined-colors, x-setup-function-keys): | ||
| 4 | * mouse-sel.el (x-select-text): | ||
| 5 | * term/w32console.el (x-setup-function-keys): Update declarations. | ||
| 6 | |||
| 3 | * progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare. | 7 | * progmodes/ruby-mode.el (ruby-syntax-propertize-heredoc): Declare. |
| 4 | 8 | ||
| 5 | * textmodes/ispell.el (comment-add): Declare. | 9 | * textmodes/ispell.el (comment-add): Declare. |
diff --git a/lisp/faces.el b/lisp/faces.el index 8b17e9ad59b..a8be29ff57d 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -30,7 +30,7 @@ | |||
| 30 | (eval-when-compile | 30 | (eval-when-compile |
| 31 | (require 'cl)) | 31 | (require 'cl)) |
| 32 | 32 | ||
| 33 | (declare-function xw-defined-colors "term/x-win" (&optional frame)) | 33 | (declare-function xw-defined-colors "term/common-win" (&optional frame)) |
| 34 | 34 | ||
| 35 | (defvar help-xref-stack-item) | 35 | (defvar help-xref-stack-item) |
| 36 | 36 | ||
| @@ -1957,7 +1957,7 @@ Value is the new parameter list." | |||
| 1957 | (list (cons 'cursor-color fg))))))) | 1957 | (list (cons 'cursor-color fg))))))) |
| 1958 | 1958 | ||
| 1959 | (declare-function x-create-frame "xfns.c" (parms)) | 1959 | (declare-function x-create-frame "xfns.c" (parms)) |
| 1960 | (declare-function x-setup-function-keys "term/x-win" (frame)) | 1960 | (declare-function x-setup-function-keys "term/common-win" (frame)) |
| 1961 | 1961 | ||
| 1962 | (defun x-create-frame-with-faces (&optional parameters) | 1962 | (defun x-create-frame-with-faces (&optional parameters) |
| 1963 | "Create and return a frame with frame parameters PARAMETERS. | 1963 | "Create and return a frame with frame parameters PARAMETERS. |
| @@ -2570,5 +2570,4 @@ also the same size as FACE on FRAME, or fail." | |||
| 2570 | 2570 | ||
| 2571 | (provide 'faces) | 2571 | (provide 'faces) |
| 2572 | 2572 | ||
| 2573 | ;; arch-tag: 19a4759f-2963-445f-b004-425b9aadd7d6 | ||
| 2574 | ;;; faces.el ends here | 2573 | ;;; faces.el ends here |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 1e42c4dc12e..e171a71cada 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-11-01 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * nnimap.el (gnutls-negotiate): | ||
| 4 | * nntp.el (netrc-parse): Fix declarations. | ||
| 5 | |||
| 1 | 2010-11-01 Katsumi Yamaoka <yamaoka@jpl.org> | 6 | 2010-11-01 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 7 | ||
| 3 | * gnus-util.el (gnus-string-match-p): New function, that is an alias to | 8 | * gnus-util.el (gnus-string-match-p): New function, that is an alias to |
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 4d0d4b840f4..ea8a0fc95e5 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el | |||
| @@ -299,7 +299,8 @@ textual parts.") | |||
| 299 | (* 5 60))) | 299 | (* 5 60))) |
| 300 | (nnimap-send-command "NOOP"))))))) | 300 | (nnimap-send-command "NOOP"))))))) |
| 301 | 301 | ||
| 302 | (declare-function gnutls-negotiate "subr" (fn file &optional arglist fileonly)) | 302 | (declare-function gnutls-negotiate "gnutls" |
| 303 | (proc type &optional priority-string trustfiles keyfiles)) | ||
| 303 | 304 | ||
| 304 | (defun nnimap-open-connection (buffer) | 305 | (defun nnimap-open-connection (buffer) |
| 305 | (unless nnimap-keepalive-timer | 306 | (unless nnimap-keepalive-timer |
diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index 946025a0af2..46cc0d281a6 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el | |||
| @@ -1,8 +1,8 @@ | |||
| 1 | ;;; nntp.el --- nntp access for Gnus | 1 | ;;; nntp.el --- nntp access for Gnus |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1987, 1988, 1989, 1990, 1992, 1993, | 3 | ;; Copyright (C) 1987, 1988, 1989, 1990, 1992, 1993, 1994, 1995, 1996, |
| 4 | ;; 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, | 4 | ;; 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, |
| 5 | ;; 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. | 5 | ;; 2009, 2010 Free Software Foundation, Inc. |
| 6 | 6 | ||
| 7 | ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> | 7 | ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 8 | ;; Keywords: news | 8 | ;; Keywords: news |
| @@ -1172,7 +1172,7 @@ It will make innd servers spawn an nnrpd process to allow actual article | |||
| 1172 | reading." | 1172 | reading." |
| 1173 | (nntp-send-command "^.*\n" "MODE READER")) | 1173 | (nntp-send-command "^.*\n" "MODE READER")) |
| 1174 | 1174 | ||
| 1175 | (declare-function netrc-parse "netrc" (file)) | 1175 | (declare-function netrc-parse "netrc" (&optional file)) |
| 1176 | (declare-function netrc-machine "netrc" | 1176 | (declare-function netrc-machine "netrc" |
| 1177 | (list machine &optional port defaultport)) | 1177 | (list machine &optional port defaultport)) |
| 1178 | (declare-function netrc-get "netrc" (alist type)) | 1178 | (declare-function netrc-get "netrc" (alist type)) |
diff --git a/lisp/mouse-sel.el b/lisp/mouse-sel.el index f3875e24f07..b9f0011e96f 100644 --- a/lisp/mouse-sel.el +++ b/lisp/mouse-sel.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; mouse-sel.el --- multi-click selection support for Emacs 19 | 1 | ;;; mouse-sel.el --- multi-click selection support for Emacs 19 |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1993, 1994, 1995, 2001, 2002, 2003, 2004, | 3 | ;; Copyright (C) 1993, 1994, 1995, 2001, 2002, 2003, 2004, 2005, 2006, |
| 4 | ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. | 4 | ;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Mike Williams <mdub@bigfoot.com> | 6 | ;; Author: Mike Williams <mdub@bigfoot.com> |
| 7 | ;; Keywords: mouse | 7 | ;; Keywords: mouse |
| @@ -299,7 +299,7 @@ where SELECTION-NAME = name of selection | |||
| 299 | SELECTION-THING-SYMBOL = name of variable where the current selection | 299 | SELECTION-THING-SYMBOL = name of variable where the current selection |
| 300 | type for this selection should be stored.") | 300 | type for this selection should be stored.") |
| 301 | 301 | ||
| 302 | (declare-function x-select-text "term/x-win" (text)) | 302 | (declare-function x-select-text "term/common-win" (text)) |
| 303 | 303 | ||
| 304 | (defvar mouse-sel-set-selection-function | 304 | (defvar mouse-sel-set-selection-function |
| 305 | (if (eq mouse-sel-default-bindings 'interprogram-cut-paste) | 305 | (if (eq mouse-sel-default-bindings 'interprogram-cut-paste) |
| @@ -314,7 +314,7 @@ Called with two arguments: | |||
| 314 | SELECTION, the name of the selection concerned, and | 314 | SELECTION, the name of the selection concerned, and |
| 315 | VALUE, the text to store. | 315 | VALUE, the text to store. |
| 316 | 316 | ||
| 317 | This sets the selection, unless `mouse-sel-default-bindings' | 317 | This sets the selection, unless `mouse-sel-default-bindings' |
| 318 | is `interprogram-cut-paste'.") | 318 | is `interprogram-cut-paste'.") |
| 319 | 319 | ||
| 320 | (declare-function x-selection-value "term/x-win" ()) | 320 | (declare-function x-selection-value "term/x-win" ()) |
| @@ -749,5 +749,4 @@ If `mouse-yank-at-point' is non-nil, insert at point instead." | |||
| 749 | 749 | ||
| 750 | (provide 'mouse-sel) | 750 | (provide 'mouse-sel) |
| 751 | 751 | ||
| 752 | ;; arch-tag: 86e6c73f-deaa-48d3-a24e-c565fda1f7d7 | ||
| 753 | ;;; mouse-sel.el ends here | 752 | ;;; mouse-sel.el ends here |
diff --git a/lisp/term/w32console.el b/lisp/term/w32console.el index 5da8b84d3f4..0d3aa934b9b 100644 --- a/lisp/term/w32console.el +++ b/lisp/term/w32console.el | |||
| @@ -45,7 +45,7 @@ | |||
| 45 | ("white" 15 65535 65535 65535)) | 45 | ("white" 15 65535 65535 65535)) |
| 46 | "A list of VGA console colors, their indices and 16-bit RGB values.") | 46 | "A list of VGA console colors, their indices and 16-bit RGB values.") |
| 47 | 47 | ||
| 48 | (declare-function x-setup-function-keys "w32-fns" (frame)) | 48 | (declare-function x-setup-function-keys "term/common-win" (frame)) |
| 49 | 49 | ||
| 50 | (defun terminal-init-w32console () | 50 | (defun terminal-init-w32console () |
| 51 | "Terminal initialization function for w32 console." | 51 | "Terminal initialization function for w32 console." |
| @@ -62,4 +62,4 @@ | |||
| 62 | (tty-set-up-initial-frame-faces) | 62 | (tty-set-up-initial-frame-faces) |
| 63 | (run-hooks 'terminal-init-w32-hook)) | 63 | (run-hooks 'terminal-init-w32-hook)) |
| 64 | 64 | ||
| 65 | ;; arch-tag: 3195fd5e-ab86-4a46-b1dc-4f7a8c8deff3 | 65 | ;;; w32console.el ends here |