aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond1993-04-26 05:15:01 +0000
committerEric S. Raymond1993-04-26 05:15:01 +0000
commit10d96c7d2cd742415c5324172df0644c1e739b67 (patch)
tree21cee5070b4479d31f5a80a084e17373cf10936f
parenta91b2e223a652004468aabfd7741467894d3e587 (diff)
downloademacs-10d96c7d2cd742415c5324172df0644c1e739b67.tar.gz
emacs-10d96c7d2cd742415c5324172df0644c1e739b67.zip
(global-map): Dyke out the last two event-to-function bindings. These belong
in loaddefs.el or the user's .emacs, not in a terminal support package. Also do the right thing and transplant all suspend-emacs bindings to iconify-frame, rather than just C-z.
-rw-r--r--lisp/term/x-win.el8
1 files changed, 1 insertions, 7 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index a531f159b28..66aeef9de0a 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -425,13 +425,7 @@ This returns ARGS with the arguments that have been processed removed."
425 425
426;;;; Function keys 426;;;; Function keys
427 427
428;; We use a different symbol to prevent 428(substitute-key-definition 'suspend-emacs 'iconify-frame global-map)
429;; doc strings from listing M-next as the preferred way to do this.
430(fset 'advertised-scroll-other-window 'scroll-other-window)
431(define-key global-map [M-next] 'scroll-other-window)
432(define-key global-map [begin] 'beginning-of-buffer)
433
434(define-key global-map "\C-z" 'iconify-frame)
435 429
436;; Map certain keypad keys into ASCII characters 430;; Map certain keypad keys into ASCII characters
437;; that people usually expect. 431;; that people usually expect.