aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term
diff options
context:
space:
mode:
authorGlenn Morris2010-10-31 23:13:43 -0700
committerGlenn Morris2010-10-31 23:13:43 -0700
commitc8ccffb13ced19628f6b9b46e497b4d5ed2febff (patch)
treeee46625430ea78adc60ae2dd711d51e82ea22447 /lisp/term
parentf4ff702e2816f5756964ea6e81687f2aa8cc4a38 (diff)
downloademacs-c8ccffb13ced19628f6b9b46e497b4d5ed2febff.tar.gz
emacs-c8ccffb13ced19628f6b9b46e497b4d5ed2febff.zip
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.
Diffstat (limited to 'lisp/term')
-rw-r--r--lisp/term/w32console.el4
1 files changed, 2 insertions, 2 deletions
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