diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-10-04 21:50:34 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-10-04 21:50:34 +0000 |
commit | f88febbb69a15284d79ba460050aa10310676a74 (patch) | |
tree | fd3bf51324bbc76d6dca9660a424341e55cfcdc8 /lisp/bindings.el | |
parent | c0752bdcf73a29a2ebb23d2a4a8e3f01cad9b22b (diff) | |
download | emacs-f88febbb69a15284d79ba460050aa10310676a74.tar.gz |
(global-map): Resync [home] and [end] bindings with C-a and C-e.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index a49abdc0a1d..b0e0783ca7f 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -748,7 +748,7 @@ language you are using." ;; natural bindings for terminal keycaps --- defined in X keysym order (define-key global-map [C-S-backspace] 'kill-whole-line) -(define-key global-map [home] 'beginning-of-line) +(define-key global-map [home] 'move-beginning-of-line) (define-key global-map [C-home] 'beginning-of-buffer) (define-key global-map [M-home] 'beginning-of-buffer-other-window) (define-key esc-map [home] 'beginning-of-buffer-other-window) @@ -768,7 +768,7 @@ language you are using." (define-key global-map [M-prior] 'scroll-other-window-down) (define-key esc-map [prior] 'scroll-other-window-down) (define-key esc-map [?\C-\S-v] 'scroll-other-window-down) -(define-key global-map [end] 'end-of-line) +(define-key global-map [end] 'move-end-of-line) (define-key global-map [C-end] 'end-of-buffer) (define-key global-map [M-end] 'end-of-buffer-other-window) (define-key esc-map [end] 'end-of-buffer-other-window) |