aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term
diff options
context:
space:
mode:
authorEric S. Raymond <[email protected]>1993-04-23 02:21:02 +0000
committerEric S. Raymond <[email protected]>1993-04-23 02:21:02 +0000
commit2fcf8a07b30209bd2dd49fafade65f744e75e219 (patch)
tree34e73121f48496be79d5fc6cf0bebfdc9af5ec11 /lisp/term
parentb501435020ddd3d928a85162167c8b088b7ea450 (diff)
(global-map): Remove function key bindings that duplicate stuff in
loaddefs.el.
Diffstat (limited to 'lisp/term')
-rw-r--r--lisp/term/x-win.el9
1 files changed, 0 insertions, 9 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index 2e51847629..a531f159b2 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -425,20 +425,11 @@ This returns ARGS with the arguments that have been processed removed."
;;;; Function keys
-;;; Give some common function keys reasonable definitions.
-(define-key global-map [home] 'beginning-of-line)
-(define-key global-map [left] 'backward-char)
-(define-key global-map [up] 'previous-line)
-(define-key global-map [right] 'forward-char)
-(define-key global-map [down] 'next-line)
-(define-key global-map [prior] 'scroll-down)
-(define-key global-map [next] 'scroll-up)
;; We use a different symbol to prevent
;; doc strings from listing M-next as the preferred way to do this.
(fset 'advertised-scroll-other-window 'scroll-other-window)
(define-key global-map [M-next] 'scroll-other-window)
(define-key global-map [begin] 'beginning-of-buffer)
-(define-key global-map [end] 'end-of-buffer)
(define-key global-map "\C-z" 'iconify-frame)