Fix bug#6265: * eldoc.el: Add completions for new commands left-* and right-*.

This commit is contained in:
Juanma Barranquero 2010-06-01 15:47:14 +02:00
parent 61158bfa57
commit 24f574a964
2 changed files with 12 additions and 7 deletions

View file

@ -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.

View file

@ -530,13 +530,13 @@ The words \"&rest\", \"&optional\" are returned unchanged."
;; 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)