aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-05-22 02:06:07 +0000
committerRichard M. Stallman1997-05-22 02:06:07 +0000
commit8c4ba7c83fa576bacfe6d3c6733136909f903e1b (patch)
treebacbd3355a2452c4923f1dc3ac15473865042ab0
parentcadd36581216264b3978863719b6e5c565009d2a (diff)
downloademacs-8c4ba7c83fa576bacfe6d3c6733136909f903e1b.tar.gz
emacs-8c4ba7c83fa576bacfe6d3c6733136909f903e1b.zip
(pc-selection-mode): Swap meanings of f16 and f18;
they were backwards.
-rw-r--r--lisp/emulation/pc-select.el5
1 files changed, 3 insertions, 2 deletions
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:
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.