diff options
| author | Eli Zaretskii | 2005-08-12 11:21:54 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-08-12 11:21:54 +0000 |
| commit | 156fbeb72c5f064a1d35455960b97817e162f46a (patch) | |
| tree | 4a586904a3ff1408b67541119503d17e5f0cd35e | |
| parent | 5cabd50e116e31dce2db5900fa47f39bf6a7cfb4 (diff) | |
| download | emacs-156fbeb72c5f064a1d35455960b97817e162f46a.tar.gz emacs-156fbeb72c5f064a1d35455960b97817e162f46a.zip | |
Add move-beginning-of-line, move-end-of-line, end-of-line,
and beginning-of-line to the list of commands after which the echo area
is updated.
| -rw-r--r-- | lisp/emacs-lisp/eldoc.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el index 74fc12ac12e..4ae8f53a981 100644 --- a/lisp/emacs-lisp/eldoc.el +++ b/lisp/emacs-lisp/eldoc.el | |||
| @@ -454,10 +454,11 @@ Emacs Lisp mode) that support Eldoc.") | |||
| 454 | ;; Prime the command list. | 454 | ;; Prime the command list. |
| 455 | (eldoc-add-command-completions | 455 | (eldoc-add-command-completions |
| 456 | "backward-" "beginning-of-" "delete-other-windows" "delete-window" | 456 | "backward-" "beginning-of-" "delete-other-windows" "delete-window" |
| 457 | "end-of-" "forward-" "indent-for-tab-command" "goto-" "mouse-set-point" | 457 | "end-of-" "exchange-point-and-mark" "forward-" |
| 458 | "next-" "other-window" "previous-" "recenter" "scroll-" | 458 | "indent-for-tab-command" "goto-" "mark-page" "mark-paragraph" |
| 459 | "self-insert-command" "split-window-" | 459 | "mouse-set-point" "move-" "pop-global-mark" "next-" "other-window" |
| 460 | "up-list" "down-list") | 460 | "previous-" "recenter" "scroll-" "self-insert-command" |
| 461 | "split-window-" "up-list" "down-list") | ||
| 461 | 462 | ||
| 462 | (provide 'eldoc) | 463 | (provide 'eldoc) |
| 463 | 464 | ||