aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Rumney2007-11-21 03:41:27 +0000
committerJason Rumney2007-11-21 03:41:27 +0000
commit2101ea1a44b6db5dcac1114790432a6f8e1eb54e (patch)
treea3f485fb8cefd80fc633753596382a14c075ec8f
parent716eb5749c1730de53675f4040d1e6d3fc9a2d25 (diff)
downloademacs-2101ea1a44b6db5dcac1114790432a6f8e1eb54e.tar.gz
emacs-2101ea1a44b6db5dcac1114790432a6f8e1eb54e.zip
(x-setup-function-keys): Remove.
-rw-r--r--lisp/ChangeLog13
-rw-r--r--lisp/term/w32-win.el14
2 files changed, 13 insertions, 14 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 18de50ed4cc..34215cd55a7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,16 @@
12007-11-21 Jason Rumney <jasonr@gnu.org>
2
3 * term/w32console.el: New term init file for w32 console.
4
5 * w32-fns.el (x-alternatives-map): Copy from term/x-win.el.
6 (x-setup-function-keys): Likewise, replacing top-level key definitions.
7 (w32-tty-standard-colors): Move to term/w32console.el.
8
9 * term/w32-win.el (x-setup-function-keys): Remove.
10
11 * term/tty-colors.el (tty-register-default-colors): Remove special
12 case for w32.
13
12007-11-21 Dan Nicolaescu <dann@ics.uci.edu> 142007-11-21 Dan Nicolaescu <dann@ics.uci.edu>
2 15
3 * frame.el (msdos-mouse-p): 16 * frame.el (msdos-mouse-p):
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el
index 90b88f359bc..7fd84a898fc 100644
--- a/lisp/term/w32-win.el
+++ b/lisp/term/w32-win.el
@@ -1058,20 +1058,6 @@ XConsortium: rgb.txt,v 10.41 94/02/20 18:39:36 rws Exp")
1058 If FRAME is nil or not given, use the selected frame." 1058 If FRAME is nil or not given, use the selected frame."
1059 (interactive "i") 1059 (interactive "i")
1060 (w32-send-sys-command ?\xf100 frame)) 1060 (w32-send-sys-command ?\xf100 frame))
1061
1062(defun x-setup-function-keys (frame)
1063 "Setup Function Keys for w32."
1064 ;; Don't do this twice on the same display, or it would break
1065 ;; normal-erase-is-backspace-mode (maybe - this is copied from X).
1066 (unless (terminal-parameter frame 'x-setup-function-keys)
1067 (with-selected-frame frame
1068 (define-key local-function-key-map [f10] 'menu-bar-open)
1069
1070 (substitute-key-definition 'suspend-emacs 'iconify-or-deiconify-frame
1071 local-function-key-map global-map)
1072
1073 (define-key local-function-key-map [S-tab] [backtab]))
1074 (set-terminal-parameter frame 'x-setup-function-keys t)))
1075 1061
1076 1062
1077;; W32 systems have different fonts than commonly found on X, so 1063;; W32 systems have different fonts than commonly found on X, so