Mercurial > emacs
changeset 17915:3c572d848dab
(pc-selection-mode): Swap meanings of f16 and f18;
they were backwards.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 22 May 1997 02:06:07 +0000 |
parents | e5e2ef0dd5ab |
children | 2cfc28884664 |
files | lisp/emulation/pc-select.el |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <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.