changeset 108845:9754518b7ea0

Fix bug#6265: * eldoc.el: Add completions for new commands left-* and right-*.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 01 Jun 2010 15:47:14 +0200
parents 2ad33f941be2
children 36500bfff4e8 b31557c10743
files lisp/ChangeLog lisp/emacs-lisp/eldoc.el
diffstat 2 files changed, 12 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Tue Jun 01 03:40:09 2010 -0700
+++ b/lisp/ChangeLog	Tue Jun 01 15:47:14 2010 +0200
@@ -1,3 +1,8 @@
+2010-06-01  Juanma Barranquero  <lekktu@gmail.com>
+
+	* emacs-lisp/eldoc.el: Add completions for new commands left-* and
+	right-*.  (Bug#6265)
+
 2010-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
 
 	Add support for vc-log-incoming, improve vc-log-outgoing for Git.
--- a/lisp/emacs-lisp/eldoc.el	Tue Jun 01 03:40:09 2010 -0700
+++ b/lisp/emacs-lisp/eldoc.el	Tue Jun 01 15:47:14 2010 +0200
@@ -530,13 +530,13 @@
 
 ;; Prime the command list.
 (eldoc-add-command-completions
- "backward-" "beginning-of-" "move-beginning-of-" "delete-other-windows"
- "delete-window" "handle-select-window"
- "end-of-" "move-end-of-" "exchange-point-and-mark" "forward-"
- "indent-for-tab-command" "goto-" "mark-page" "mark-paragraph"
- "mouse-set-point" "move-" "pop-global-mark" "next-" "other-window"
- "previous-" "recenter" "scroll-" "self-insert-command"
- "split-window-" "up-list" "down-list")
+ "backward-" "beginning-of-" "delete-other-windows" "delete-window"
+ "down-list" "end-of-" "exchange-point-and-mark" "forward-" "goto-"
+ "handle-select-window" "indent-for-tab-command" "left-" "mark-page"
+ "mark-paragraph" "mouse-set-point" "move-" "move-beginning-of-"
+ "move-end-of-" "next-" "other-window" "pop-global-mark" "previous-"
+ "recenter" "right-" "scroll-" "self-insert-command" "split-window-"
+ "up-list")
 
 (provide 'eldoc)