aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-25 22:32:07 +0000
committerRichard M. Stallman1993-07-25 22:32:07 +0000
commit5c2867e0558c70324dc95f64caa37bc11d6d4f0a (patch)
treed1f57d97875425b2343355ebaf73f57b1393c230
parent9d317b2cfd09ab4475a2f8405e82d4227d03a8db (diff)
downloademacs-5c2867e0558c70324dc95f64caa37bc11d6d4f0a.tar.gz
emacs-5c2867e0558c70324dc95f64caa37bc11d6d4f0a.zip
(x-selection-timeout): Use 20000 as default.
-rw-r--r--lisp/term/x-win.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el
index 807aa5e2bf4..8b3b49cd87f 100644
--- a/lisp/term/x-win.el
+++ b/lisp/term/x-win.el
@@ -574,7 +574,7 @@ This returns ARGS with the arguments that have been processed removed."
574;; Set x-selection-timeout, measured in milliseconds. 574;; Set x-selection-timeout, measured in milliseconds.
575(let ((res-selection-timeout 575(let ((res-selection-timeout
576 (x-get-resource "selectionTimeout" "SelectionTimeout"))) 576 (x-get-resource "selectionTimeout" "SelectionTimeout")))
577 (setq x-selection-timeout 5000) 577 (setq x-selection-timeout 20000)
578 (if res-selection-timeout 578 (if res-selection-timeout
579 (setq x-selection-timeout (string-to-number res-selection-timeout)))) 579 (setq x-selection-timeout (string-to-number res-selection-timeout))))
580 580