diff options
| -rw-r--r-- | lisp/bindings.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index f0903dcd0d2..4decb7a857e 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -766,7 +766,8 @@ language you are using." | |||
| 766 | (global-set-key [C-right] 'forward-word) | 766 | (global-set-key [C-right] 'forward-word) |
| 767 | (global-set-key [C-left] 'backward-word) | 767 | (global-set-key [C-left] 'backward-word) |
| 768 | ;; This is not quite compatible, but at least is analogous | 768 | ;; This is not quite compatible, but at least is analogous |
| 769 | (global-set-key [C-delete] 'backward-kill-word) | 769 | (global-set-key [C-delete] 'backward-kill-word) |
| 770 | (global-set-key [C-backspace] 'kill-word) | ||
| 770 | ;; This is "move to the clipboard", or as close as we come. | 771 | ;; This is "move to the clipboard", or as close as we come. |
| 771 | (global-set-key [S-delete] 'kill-region) | 772 | (global-set-key [S-delete] 'kill-region) |
| 772 | 773 | ||