Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e96d62cd
Commit
e96d62cd
authored
Nov 13, 2009
by
Stefan Monnier
Browse files
(minibuffer-default-add-completions): Drop deprecated 4th arg.
parent
8a605fe8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
lisp/ChangeLog
lisp/ChangeLog
+9
-3
lisp/simple.el
lisp/simple.el
+1
-2
No files found.
lisp/ChangeLog
View file @
e96d62cd
2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
* simple.el (minibuffer-default-add-completions): Drop deprecated
4th arg.
2009-11-13 Tomas Abrahamsson <tab@lysator.liu.se>
* 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 <eliz@gnu.org>.
(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 <monnier@iro.umontreal.ca>
* 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.
...
...
lisp/simple.el
View file @
e96d62cd
...
...
@@ -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)))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment