2010-10-24 Glenn Morris <rgm@gnu.org>
+ * w32-vars.el (x-select-enable-clipboard):
+ * term/x-win.el (x-select-enable-clipboard): Move to common-win.
+ * term/common-win.el (x-select-enable-clipboard): Move here.
+
* term/tty-colors.el (tty-defined-color-alist): Remove duplicate
definition of C variable.
;;; Code:
+(defcustom x-select-enable-clipboard t
+ "Non-nil means cutting and pasting uses the clipboard.
+This is in addition to, but in preference to, the primary selection.
+
+Note that MS-Windows does not support selection types other than the
+clipboard. \(The primary selection that is set by Emacs is not
+accessible to other programs on MS-Windows.\)"
+ :type 'boolean
+ :group 'killing
+ ;; The GNU/Linux version changed in 24.1, the MS-Windows version did not.
+ :version "24.1")
(defvar x-invocation-args)
For Nextstep, this is a list of non-PANTONE colors returned by
the operating system.")
-;; arch-tag: 2a128601-99cc-401e-9dff-0ee6a36102ef
;;; common-win.el ends here
"The value of the PRIMARY X selection last time we selected or
pasted text.")
-(defcustom x-select-enable-clipboard t
- "Non-nil means cutting and pasting uses the clipboard.
-This is in addition to, but in preference to, the primary selection.
-
-Note that MS-Windows does not support selection types other than the
-clipboard. \(The primary selection that is set by Emacs is not
-accessible to other programs on MS-Windows.\)"
- :type 'boolean
- :group 'killing
- :version "24.1")
-
(defcustom x-select-enable-primary nil
"Non-nil means cutting and pasting uses the primary selection."
:type 'boolean
(string :tag "Font")))))))
:group 'w32)
-(defcustom x-select-enable-clipboard t
- "Non-nil means cutting and pasting uses the clipboard.
-This is in addition to, but in preference to, the primary selection.
-
-Note that MS-Windows does not support selection types other than the
-clipboard. \(The primary selection that is set by Emacs is not
-accessible to other programs on MS-Windows.\)"
- :type 'boolean
- :group 'killing)
-
(provide 'w32-vars)
;;; w32-vars.el ends here