diff options
| author | Juanma Barranquero | 2010-06-01 15:47:14 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-06-01 15:47:14 +0200 |
| commit | 24f574a964c813c7bdb45929cb425dd73f21e33a (patch) | |
| tree | c1588e742f1973281130b513e1b7d3a68bddd4f1 | |
| parent | 61158bfa572d2480bfb4e82f33bc212d6fe3e221 (diff) | |
| download | emacs-24f574a964c813c7bdb45929cb425dd73f21e33a.tar.gz emacs-24f574a964c813c7bdb45929cb425dd73f21e33a.zip | |
Fix bug#6265: * eldoc.el: Add completions for new commands left-* and right-*.
| -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 a2c62a84a8e..8c16ede14bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-06-01 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * emacs-lisp/eldoc.el: Add completions for new commands left-* and | ||
| 4 | right-*. (Bug#6265) | ||
| 5 | |||
| 1 | 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu> | 6 | 2010-06-01 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 7 | ||
| 3 | Add support for vc-log-incoming, improve vc-log-outgoing for Git. | 8 | 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 961d576433a..b4845495c9e 100644 --- a/lisp/emacs-lisp/eldoc.el +++ b/lisp/emacs-lisp/eldoc.el | |||
| @@ -530,13 +530,13 @@ The words \"&rest\", \"&optional\" are returned unchanged." | |||
| 530 | 530 | ||
| 531 | ;; Prime the command list. | 531 | ;; Prime the command list. |
| 532 | (eldoc-add-command-completions | 532 | (eldoc-add-command-completions |
| 533 | "backward-" "beginning-of-" "move-beginning-of-" "delete-other-windows" | 533 | "backward-" "beginning-of-" "delete-other-windows" "delete-window" |
| 534 | "delete-window" "handle-select-window" | 534 | "down-list" "end-of-" "exchange-point-and-mark" "forward-" "goto-" |
| 535 | "end-of-" "move-end-of-" "exchange-point-and-mark" "forward-" | 535 | "handle-select-window" "indent-for-tab-command" "left-" "mark-page" |
| 536 | "indent-for-tab-command" "goto-" "mark-page" "mark-paragraph" | 536 | "mark-paragraph" "mouse-set-point" "move-" "move-beginning-of-" |
| 537 | "mouse-set-point" "move-" "pop-global-mark" "next-" "other-window" | 537 | "move-end-of-" "next-" "other-window" "pop-global-mark" "previous-" |
| 538 | "previous-" "recenter" "scroll-" "self-insert-command" | 538 | "recenter" "right-" "scroll-" "self-insert-command" "split-window-" |
| 539 | "split-window-" "up-list" "down-list") | 539 | "up-list") |
| 540 | 540 | ||
| 541 | (provide 'eldoc) | 541 | (provide 'eldoc) |
| 542 | 542 | ||