diff options
| author | Stefan Monnier | 2005-10-04 21:50:34 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2005-10-04 21:50:34 +0000 |
| commit | f88febbb69a15284d79ba460050aa10310676a74 (patch) | |
| tree | fd3bf51324bbc76d6dca9660a424341e55cfcdc8 | |
| parent | c0752bdcf73a29a2ebb23d2a4a8e3f01cad9b22b (diff) | |
| download | emacs-f88febbb69a15284d79ba460050aa10310676a74.tar.gz emacs-f88febbb69a15284d79ba460050aa10310676a74.zip | |
(global-map): Resync [home] and [end] bindings with C-a and C-e.
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/bindings.el | 4 |
2 files changed, 13 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fc438fe7663..b713d5d2df9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,16 @@ | |||
| 1 | 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * bindings.el (global-map): Resync [home] and [end] bindings with C-a | ||
| 4 | and C-e. | ||
| 5 | |||
| 6 | * emacs-lisp/eldoc.el: Move comments into docstrings. | ||
| 7 | (eldoc-message-commands): Initialize in its declaration. | ||
| 8 | Add move-beginning-of-line and move-end-of-line. | ||
| 9 | (eldoc-add-command, eldoc-add-command-completions) | ||
| 10 | (eldoc-remove-command, eldoc-remove-command-completions): Simplify. | ||
| 11 | |||
| 12 | * outline.el (outline-mark-subtree): Activate the mark. | ||
| 13 | |||
| 3 | * calendar/appt.el (appt-time-regexp): New var. | 14 | * calendar/appt.el (appt-time-regexp): New var. |
| 4 | (appt-add, appt-make-list): Use it. | 15 | (appt-add, appt-make-list): Use it. |
| 5 | (appt-convert-time): Clean up. | 16 | (appt-convert-time): Clean up. |
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." | |||
| 748 | 748 | ||
| 749 | ;; natural bindings for terminal keycaps --- defined in X keysym order | 749 | ;; natural bindings for terminal keycaps --- defined in X keysym order |
| 750 | (define-key global-map [C-S-backspace] 'kill-whole-line) | 750 | (define-key global-map [C-S-backspace] 'kill-whole-line) |
| 751 | (define-key global-map [home] 'beginning-of-line) | 751 | (define-key global-map [home] 'move-beginning-of-line) |
| 752 | (define-key global-map [C-home] 'beginning-of-buffer) | 752 | (define-key global-map [C-home] 'beginning-of-buffer) |
| 753 | (define-key global-map [M-home] 'beginning-of-buffer-other-window) | 753 | (define-key global-map [M-home] 'beginning-of-buffer-other-window) |
| 754 | (define-key esc-map [home] 'beginning-of-buffer-other-window) | 754 | (define-key esc-map [home] 'beginning-of-buffer-other-window) |
| @@ -768,7 +768,7 @@ language you are using." | |||
| 768 | (define-key global-map [M-prior] 'scroll-other-window-down) | 768 | (define-key global-map [M-prior] 'scroll-other-window-down) |
| 769 | (define-key esc-map [prior] 'scroll-other-window-down) | 769 | (define-key esc-map [prior] 'scroll-other-window-down) |
| 770 | (define-key esc-map [?\C-\S-v] 'scroll-other-window-down) | 770 | (define-key esc-map [?\C-\S-v] 'scroll-other-window-down) |
| 771 | (define-key global-map [end] 'end-of-line) | 771 | (define-key global-map [end] 'move-end-of-line) |
| 772 | (define-key global-map [C-end] 'end-of-buffer) | 772 | (define-key global-map [C-end] 'end-of-buffer) |
| 773 | (define-key global-map [M-end] 'end-of-buffer-other-window) | 773 | (define-key global-map [M-end] 'end-of-buffer-other-window) |
| 774 | (define-key esc-map [end] 'end-of-buffer-other-window) | 774 | (define-key esc-map [end] 'end-of-buffer-other-window) |