diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-06-20 18:24:35 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-06-20 18:24:35 +0000 |
commit | e7cec0051a644c11a04d8909c9a7bf3ad376016f (patch) | |
tree | cc31bd738df7e70b6fc0b0528eba42114480db10 /lisp/emulation | |
parent | 41115d07454216a3e1cb5ce829aaa861cfb40860 (diff) | |
download | emacs-e7cec0051a644c11a04d8909c9a7bf3ad376016f.tar.gz |
(pc-selection-mode): Bind `M-\d'
instead of `M-backspace'.
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/pc-select.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emulation/pc-select.el b/lisp/emulation/pc-select.el index 06f2831e150..5edd920176e 100644 --- a/lisp/emulation/pc-select.el +++ b/lisp/emulation/pc-select.el @@ -2,7 +2,7 @@ ;;; (or MAC GUI or MS-windoze (bah)) look-and-feel ;;; including key bindings. -;; Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. +;; Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation, Inc. ;; Author: Michael Staats <michael@thp.Uni-Duisburg.DE> ;; Keywords: convenience @@ -743,7 +743,7 @@ but before calling pc-selection-mode): (global-set-key [f6] 'other-window) ; KNextPane F6 (global-set-key [delete] 'delete-char) ; KDelete Del (global-set-key [C-delete] 'kill-line) ; KEraseEndLine cDel - (global-set-key [M-backspace] 'undo) ; KUndo aBS + (global-set-key "\M-\d" 'undo) ; KUndo aBS ;; The following bindings are taken from pc-mode.el ;; as suggested by RMS. |