diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-06-01 15:47:14 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-06-01 15:47:14 +0200 |
commit | 24f574a964c813c7bdb45929cb425dd73f21e33a (patch) | |
tree | c1588e742f1973281130b513e1b7d3a68bddd4f1 /lisp | |
parent | 61158bfa572d2480bfb4e82f33bc212d6fe3e221 (diff) |
Fix bug#6265: * eldoc.el: Add completions for new commands left-* and right-*.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/emacs-lisp/eldoc.el | 14 |
2 files changed, 12 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a2c62a84a8..8c16ede14b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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. diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el index 961d576433..b4845495c9 100644 --- a/lisp/emacs-lisp/eldoc.el +++ b/lisp/emacs-lisp/eldoc.el @@ -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) |