Change x-select-enable-primary to nil.
authorChong Yidong <cyd@stupidchicken.com>
Sat, 17 Jul 2010 02:49:48 +0000 (22:49 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 17 Jul 2010 02:49:48 +0000 (22:49 -0400)
* lisp/mouse.el (mouse-drag-copy-region):
* lisp/simple.el (select-active-regions): Likewise.

* lisp/term/x-win.el (x-select-enable-primary): Change default to nil.
(x-select-enable-clipboard): Add :version keyword.

etc/NEWS
lisp/ChangeLog
lisp/mouse.el
lisp/simple.el
lisp/term/x-win.el

index 27865cc..bf60bcb 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -183,6 +183,8 @@ and yank use the clipboard, in addition to the primary selection.
 
 *** `x-select-enable-clipboard' now defaults to t.
 
+*** `x-select-enable-primary' now defaults to nil.
+
 *** `mouse-drag-copy-region' now defaults to nil.
 
 *** `mouse-2' is now bound to `mouse-yank-primary'.
index f0ea29a..fe0c28d 100644 (file)
@@ -1,3 +1,11 @@
+2010-07-17  Chong Yidong  <cyd@stupidchicken.com>
+
+       * term/x-win.el (x-select-enable-primary): Change default to nil.
+       (x-select-enable-clipboard): Add :version keyword.
+
+       * mouse.el (mouse-drag-copy-region):
+       * simple.el (select-active-regions): Likewise.
+
 2010-07-16  Reiner Steib  <Reiner.Steib@gmx.de>
 
        * vc.el (vc-coding-system-inherit-eol): New defvar.
index b159add..39c6993 100644 (file)
@@ -44,7 +44,7 @@
 (defcustom mouse-drag-copy-region nil
   "If non-nil, mouse drag copies region to kill-ring."
   :type 'boolean
-  :version "22.1"
+  :version "24.1"
   :group 'mouse)
 
 (defcustom mouse-1-click-follows-link 450
index 939fbfe..10b8ab6 100644 (file)
@@ -3670,7 +3670,7 @@ a mistake; see the documentation of `set-mark'."
   "If non-nil, an active region automatically becomes the window selection."
   :type 'boolean
   :group 'killing
-  :version "23.1")
+  :version "24.1")
 
 (declare-function x-selection-owner-p "xselect.c" (&optional selection))
 
index b3ce877..213f7f5 100644 (file)
@@ -1223,12 +1223,14 @@ It is said that overlarge strings are slow to put into the cut buffer.")
   "Non-nil means cutting and pasting uses the clipboard.
 This is in addition to, but in preference to, the primary selection."
   :type 'boolean
-  :group 'killing)
+  :group 'killing
+  :version "24.1")
 
-(defcustom x-select-enable-primary t
+(defcustom x-select-enable-primary nil
   "Non-nil means cutting and pasting uses the primary selection."
   :type 'boolean
-  :group 'killing)
+  :group 'killing
+  :version "24.1")
 
 (defun x-select-text (text &optional push)
   "Select TEXT, a string, according to the window system.