diff lisp/msw-init.el @ 284:558f606b08ae r21-0b40

Import from CVS: tag r21-0b40
author cvs
date Mon, 13 Aug 2007 10:34:13 +0200
parents 7df0dd720c89
children e11d67e05968
line wrap: on
line diff
--- a/lisp/msw-init.el	Mon Aug 13 10:33:19 2007 +0200
+++ b/lisp/msw-init.el	Mon Aug 13 10:34:13 2007 +0200
@@ -62,9 +62,10 @@
 		    (activate-region-as-selection))))
     ;; Old-style mswindows bindings. The new-style mswindows bindings
     ;; (namely Ctrl-X, Ctrl-C and Ctrl-V) are already spoken for by XEmacs.
-    (define-key global-map '(control insert) 'mswindows-copy-clipboard)
-    (define-key global-map '(shift insert)   'mswindows-paste-clipboard)
-    (define-key global-map '(shift delete)   'mswindows-cut-clipboard)
+    (define-key global-map '(shift delete)   'kill-primary-selection)
+    (define-key global-map '(control delete) 'delete-primary-selection)
+    (define-key global-map '(shift insert)   'yank-clipboard-selection)
+    (define-key global-map '(control insert) 'copy-primary-selection)
 
     ;; Random stuff
     (define-key global-map 'menu	'popup-mode-menu)