diff options
| author | Dmitry Gutov | 2017-06-06 01:23:41 +0300 |
|---|---|---|
| committer | Dmitry Gutov | 2017-06-06 01:23:41 +0300 |
| commit | 3632633cab801f84a23f60d5585acfae38f6e60c (patch) | |
| tree | e7e673811f013305c300d13fec3df68675211907 | |
| parent | a003e87be775adc0d351ad741b609f0ee23fe560 (diff) | |
| download | emacs-3632633cab801f84a23f60d5585acfae38f6e60c.tar.gz emacs-3632633cab801f84a23f60d5585acfae38f6e60c.zip | |
Enable ElDoc messages after the newline command
* lisp/emacs-lisp/eldoc.el:
Add "newline" to the eldoc-add-command-completions call (bug#27228).
| -rw-r--r-- | lisp/emacs-lisp/eldoc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el index 40f5e2ef96a..a05bd7cc4d4 100644 --- a/lisp/emacs-lisp/eldoc.el +++ b/lisp/emacs-lisp/eldoc.el | |||
| @@ -418,7 +418,7 @@ return any documentation.") | |||
| 418 | "down-list" "end-of-" "exchange-point-and-mark" "forward-" "goto-" | 418 | "down-list" "end-of-" "exchange-point-and-mark" "forward-" "goto-" |
| 419 | "handle-select-window" "indent-for-tab-command" "left-" "mark-page" | 419 | "handle-select-window" "indent-for-tab-command" "left-" "mark-page" |
| 420 | "mark-paragraph" "mouse-set-point" "move-" "move-beginning-of-" | 420 | "mark-paragraph" "mouse-set-point" "move-" "move-beginning-of-" |
| 421 | "move-end-of-" "next-" "other-window" "pop-global-mark" "previous-" | 421 | "move-end-of-" "newline" "next-" "other-window" "pop-global-mark" "previous-" |
| 422 | "recenter" "right-" "scroll-" "self-insert-command" "split-window-" | 422 | "recenter" "right-" "scroll-" "self-insert-command" "split-window-" |
| 423 | "up-list") | 423 | "up-list") |
| 424 | 424 | ||