aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/term')
-rw-r--r--lisp/term/x-win.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index 4f388247073..3f9a0f62131 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -629,10 +629,14 @@ This returns ARGS with the arguments that have been processed removed."
629 629
630(setq screen-creation-function 'x-create-screen) 630(setq screen-creation-function 'x-create-screen)
631(x-read-resources) 631(x-read-resources)
632(x-pop-initial-window) 632;(x-pop-initial-window)
633 633
634(setq suspend-hook 634(setq suspend-hook
635 '(lambda () 635 '(lambda ()
636 (error "Suspending an emacs running under X makes no sense"))) 636 (error "Suspending an emacs running under X makes no sense")))
637 637
638;;; Turn off window-splitting optimization; X is usually fast enough
639;;; that this is only annoying.
640(setq split-window-keep-point t)
641
638(define-key global-map "\C-z" 'iconify-emacs) 642(define-key global-map "\C-z" 'iconify-emacs)