From: Stefan Monnier Date: Fri, 13 Nov 2009 14:50:17 +0000 (+0000) Subject: (minibuffer-default-add-completions): Drop deprecated 4th arg. X-Git-Tag: emacs-pretest-23.1.90~458 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e96d62cd3ae0f96d084d15d3581d7bf0b69e3799;p=emacs.git (minibuffer-default-add-completions): Drop deprecated 4th arg. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fa3beffc34c..10cb54857a0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,7 +1,12 @@ +2009-11-13 Stefan Monnier + + * simple.el (minibuffer-default-add-completions): Drop deprecated + 4th arg. + 2009-11-13 Tomas Abrahamsson - * textmodes/artist.el (artist-mouse-choose-operation): Call - `tmm-prompt' instead of `x-popup-menu' if we cannot popup + * textmodes/artist.el (artist-mouse-choose-operation): + Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup menus. Bug noticed by Eli Zaretskii . (artist-compute-up-event-key): New function. (artist-mouse-choose-operation, artist-down-mouse-1): Call it. @@ -468,7 +473,8 @@ 2009-11-03 Stefan Monnier - * calendar/todo-mode.el (todo-add-category): Don't hardcode point-min==1. + * calendar/todo-mode.el (todo-add-category): Don't hardcode + point-min==1. (todo-top-priorities): Only display-buffer when called interactively. (todo-item-start): Don't save excursion point. (todo-item-end): Be slightly more careful. Add `include-sep' arg. diff --git a/lisp/simple.el b/lisp/simple.el index 73c7ac7579f..e1d0f052ea0 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1374,8 +1374,7 @@ the end of the list of defaults just after the default value." (let ((def minibuffer-default) (all (all-completions "" minibuffer-completion-table - minibuffer-completion-predicate - t))) + minibuffer-completion-predicate))) (if (listp def) (append def all) (cons def (delete def all)))))