]> git.eshelyaron.com Git - emacs.git/commitdiff
(pc-selection-mode): Swap meanings of f16 and f18;
authorRichard M. Stallman <rms@gnu.org>
Thu, 22 May 1997 02:06:07 +0000 (02:06 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 22 May 1997 02:06:07 +0000 (02:06 +0000)
they were backwards.

lisp/emulation/pc-select.el

index a9ca70482436bfef62b45c0274a5c638c117f3d2..fb001e8295a050a38a46981d12723c25f6816b8e 100644 (file)
@@ -654,8 +654,9 @@ In addition, certain other PC bindings are imitated:
   ;; The following bindings are useful on Sun Type 3 keyboards
   ;; They implement the Get-Delete-Put (copy-cut-paste)
   ;; functions from sunview on the L6, L8 and L10 keys
-  (define-key global-map [f16]  'yank)
-  (define-key global-map [f18]  'copy-region-as-kill)
+  ;; Sam Steingold <sds@ptc.com> says that f16 is copy and f18 is paste.
+  (define-key global-map [f16]  'copy-region-as-kill)
+  (define-key global-map [f18]  'yank)
   (define-key global-map [f20]  'kill-region)
 
   ;; The following bindings are from Pete Forman.