From f88febbb69a15284d79ba460050aa10310676a74 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 4 Oct 2005 21:50:34 +0000 Subject: [PATCH] (global-map): Resync [home] and [end] bindings with C-a and C-e. --- lisp/ChangeLog | 11 +++++++++++ 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 @@ 2005-10-04 Stefan Monnier + * bindings.el (global-map): Resync [home] and [end] bindings with C-a + and C-e. + + * emacs-lisp/eldoc.el: Move comments into docstrings. + (eldoc-message-commands): Initialize in its declaration. + Add move-beginning-of-line and move-end-of-line. + (eldoc-add-command, eldoc-add-command-completions) + (eldoc-remove-command, eldoc-remove-command-completions): Simplify. + + * outline.el (outline-mark-subtree): Activate the mark. + * calendar/appt.el (appt-time-regexp): New var. (appt-add, appt-make-list): Use it. (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." ;; 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) -- 2.39.5