# HG changeset patch # User Richard M. Stallman # Date 864266767 0 # Node ID 3c572d848dab38446fe23017ab60a4c9aa67924e # Parent e5e2ef0dd5ab42cd7f00eaaa5c3e192d6627037d (pc-selection-mode): Swap meanings of f16 and f18; they were backwards. diff -r e5e2ef0dd5ab -r 3c572d848dab lisp/emulation/pc-select.el --- a/lisp/emulation/pc-select.el Thu May 22 01:58:55 1997 +0000 +++ b/lisp/emulation/pc-select.el Thu May 22 02:06:07 1997 +0000 @@ -654,8 +654,9 @@ ;; 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 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.