aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1991-07-15 22:33:41 +0000
committerJim Blandy1991-07-15 22:33:41 +0000
commite9de784c5a33e94c0794c53b7db0833d0a00845b (patch)
treefd4826df713b140e0c099abfff68ab524ea297e1
parent1ab256cb9997cf15983abc63310cdf32f0533bca (diff)
downloademacs-e9de784c5a33e94c0794c53b7db0833d0a00845b.tar.gz
emacs-e9de784c5a33e94c0794c53b7db0833d0a00845b.zip
*** empty log message ***
-rw-r--r--lisp/term/x-win.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index abf794f1ad0..30f5fa9b2e3 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -626,10 +626,14 @@ This returns ARGS with the arguments that have been processed removed."
626;;; Do the actual X Windows setup here; the above code just defines 626;;; Do the actual X Windows setup here; the above code just defines
627;;; functions and variables that we use now. 627;;; functions and variables that we use now.
628 628
629;; xterm.c depends on using interrupt-driven input.
630(set-input-mode t nil t)
631(x-open-connection (or x-display-name 629(x-open-connection (or x-display-name
632 (setq x-display-name (getenv "DISPLAY")))) 630 (setq x-display-name (getenv "DISPLAY"))))
631
632;; xterm.c depends on using interrupt-driven input, but we don't want
633;; the fcntls to apply to the terminal, so we do this after opening
634;; the display.
635(set-input-mode t nil t)
636
633(x-read-resources) 637(x-read-resources)
634(setq command-line-args (x-handle-args command-line-args)) 638(setq command-line-args (x-handle-args command-line-args))
635(x-pop-initial-window) 639(x-pop-initial-window)