* minibuffer.el (minibuffer-confirm-exit-commands): Add completion-at-point.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 23 Jun 2012 04:48:55 +0000 (00:48 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 23 Jun 2012 04:48:55 +0000 (00:48 -0400)
Fixes: debbugs:11725

lisp/ChangeLog
lisp/minibuffer.el

index a9fb496..03730a6 100644 (file)
@@ -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.
index db77439..c4f0966 100644 (file)
@@ -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.")