# HG changeset patch # User Stefan Monnier # Date 1258123817 0 # Node ID 10cb13aa45b6454dad2e0b521ea628f742024b9e # Parent d6ef6565221023e39f3bf330e0b6f0bd5e05a987 (minibuffer-default-add-completions): Drop deprecated 4th arg. diff -r d6ef65652210 -r 10cb13aa45b6 lisp/ChangeLog --- a/lisp/ChangeLog Fri Nov 13 11:18:02 2009 +0000 +++ b/lisp/ChangeLog Fri Nov 13 14:50:17 2009 +0000 @@ -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 -r d6ef65652210 -r 10cb13aa45b6 lisp/simple.el --- a/lisp/simple.el Fri Nov 13 11:18:02 2009 +0000 +++ b/lisp/simple.el Fri Nov 13 14:50:17 2009 +0000 @@ -1374,8 +1374,7 @@ (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)))))