From: Glenn Morris Date: Sat, 24 Oct 2009 03:49:44 +0000 (+0000) Subject: (term-dynamic-list-completions): Use choose-completion rather than X-Git-Tag: emacs-pretest-23.1.90~677 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=656fc5f5374a3222f52b1dbf8cf23ba928b0e0de;p=emacs.git (term-dynamic-list-completions): Use choose-completion rather than obsolete alias mouse-choose-completion. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3ed4e083527..260aec76b02 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2009-10-24 Glenn Morris + * 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. diff --git a/lisp/term.el b/lisp/term.el index b7eb9fd1845..97d2fa5a74e 100644 --- a/lisp/term.el +++ b/lisp/term.el @@ -4180,7 +4180,7 @@ Typing SPC flushes the help buffer." ;; 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)