* minibuffer.el (minibuffer-confirm-exit-commands): Add completion-at-point.
Fixes: debbugs:11725
This commit is contained in:
parent
89a582ece5
commit
ec55c5e0b0
2 changed files with 9 additions and 3 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* minibuffer.el (minibuffer-confirm-exit-commands):
|
||||
Add completion-at-point (bug#11725).
|
||||
|
||||
2012-06-21 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* progmodes/f90.el (f90-font-lock-keywords-2):
|
||||
|
|
@ -43,8 +48,8 @@
|
|||
|
||||
2012-05-18 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* mail/sendmail.el (mail-yank-region): Recognize
|
||||
rmail-yank-current-message in addition to insert-buffer.
|
||||
* mail/sendmail.el (mail-yank-region):
|
||||
Recognize rmail-yank-current-message in addition to insert-buffer.
|
||||
Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
|
||||
a *mail* buffer created through rmail-start-mail with sendmail as
|
||||
mail-user-agent.
|
||||
|
|
|
|||
|
|
@ -892,7 +892,8 @@ Repeated uses step through the possible completions."
|
|||
(completion--cache-all-sorted-completions (cdr all)))))))
|
||||
|
||||
(defvar minibuffer-confirm-exit-commands
|
||||
'(minibuffer-complete minibuffer-complete-word PC-complete PC-complete-word)
|
||||
'(completion-at-point minibuffer-complete
|
||||
minibuffer-complete-word PC-complete PC-complete-word)
|
||||
"A list of commands which cause an immediately following
|
||||
`minibuffer-complete-and-exit' to ask for extra confirmation.")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue