]> git.eshelyaron.com Git - emacs.git/commitdiff
(global-map): Resync [home] and [end] bindings with C-a and C-e.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 4 Oct 2005 21:50:34 +0000 (21:50 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 4 Oct 2005 21:50:34 +0000 (21:50 +0000)
lisp/ChangeLog
lisp/bindings.el

index fc438fe7663222381043a882e56bd029ff771861..b713d5d2df98e4b056fbff5603c79aea1333a3eb 100644 (file)
@@ -1,5 +1,16 @@
 2005-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * 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.
index a49abdc0a1d587b1a77c4c063b788b72f8c3fe0b..b0e0783ca7f2d3047f6e2e2c5e268e60feabab5a 100644 (file)
@@ -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)