From: Richard M. Stallman Date: Thu, 22 May 1997 02:06:07 +0000 (+0000) Subject: (pc-selection-mode): Swap meanings of f16 and f18; X-Git-Tag: emacs-20.1~2030 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8c4ba7c83fa576bacfe6d3c6733136909f903e1b;p=emacs.git (pc-selection-mode): Swap meanings of f16 and f18; they were backwards. --- diff --git a/lisp/emulation/pc-select.el b/lisp/emulation/pc-select.el index a9ca7048243..fb001e8295a 100644 --- a/lisp/emulation/pc-select.el +++ b/lisp/emulation/pc-select.el @@ -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 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.