Mercurial > emacs
comparison lisp/emulation/pc-select.el @ 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 | c729af982039 |
children | 75f7eec6d388 |
comparison
equal
deleted
inserted
replaced
17914:e5e2ef0dd5ab | 17915:3c572d848dab |
---|---|
652 (define-key global-map [M-up] 'backward-line-nomark) | 652 (define-key global-map [M-up] 'backward-line-nomark) |
653 | 653 |
654 ;; The following bindings are useful on Sun Type 3 keyboards | 654 ;; The following bindings are useful on Sun Type 3 keyboards |
655 ;; They implement the Get-Delete-Put (copy-cut-paste) | 655 ;; They implement the Get-Delete-Put (copy-cut-paste) |
656 ;; functions from sunview on the L6, L8 and L10 keys | 656 ;; functions from sunview on the L6, L8 and L10 keys |
657 (define-key global-map [f16] 'yank) | 657 ;; Sam Steingold <sds@ptc.com> says that f16 is copy and f18 is paste. |
658 (define-key global-map [f18] 'copy-region-as-kill) | 658 (define-key global-map [f16] 'copy-region-as-kill) |
659 (define-key global-map [f18] 'yank) | |
659 (define-key global-map [f20] 'kill-region) | 660 (define-key global-map [f20] 'kill-region) |
660 | 661 |
661 ;; The following bindings are from Pete Forman. | 662 ;; The following bindings are from Pete Forman. |
662 ;; I modified them a little to work together with the | 663 ;; I modified them a little to work together with the |
663 ;; mark functionality I added. | 664 ;; mark functionality I added. |