Mercurial > emacs
changeset 105739:af8ed20ba9ca
(term-dynamic-list-completions): Use choose-completion rather than
obsolete alias mouse-choose-completion.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 24 Oct 2009 03:49:44 +0000 |
parents | 89a1bad44673 |
children | f6fc3559bd1d |
files | lisp/ChangeLog lisp/term.el |
diffstat | 2 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sat Oct 24 03:48:37 2009 +0000 +++ b/lisp/ChangeLog Sat Oct 24 03:49:44 2009 +0000 @@ -1,5 +1,8 @@ 2009-10-24 Glenn Morris <rgm@gnu.org> + * term.el (term-dynamic-list-completions): Use choose-completion rather + than obsolete alias mouse-choose-completion. + * progmodes/octave-mod.el (octave-complete-symbol): Use choose-completion if mouse-choose-completion is ever removed.
--- a/lisp/term.el Sat Oct 24 03:48:37 2009 +0000 +++ b/lisp/term.el Sat Oct 24 03:49:44 2009 +0000 @@ -4180,7 +4180,7 @@ ;; If the user does mouse-choose-completion with the mouse, ;; execute the command, then delete the completion window. (progn - (mouse-choose-completion first) + (choose-completion first) (set-window-configuration conf)) (if (eq first ?\s) (set-window-configuration conf)