+2014-11-08 Juri Linkov <juri@jurta.org>
+
+ * minibuffer.el (minibuffer-completion-help): Compare this-command
+ with completion-at-point. (Bug#17809)
+
2014-11-08 Glenn Morris <rgm@gnu.org>
* emacs-lisp/bytecomp.el (byte-compile-report-error):
;; Use `display-buffer-below-selected' for inline completions,
;; but not in the minibuffer (e.g. in `eval-expression')
;; for which `display-buffer-at-bottom' is used.
- ,(if (and completion-in-region-mode-predicate
+ ;; Compare `this-command' with `completion-at-point'
+ ;; since `completion--in-region-1' sets `this-command'
+ ;; to this value for region completion commands.
+ ,(if (and (eq this-command 'completion-at-point)
(not (minibuffer-selected-window)))
'display-buffer-below-selected
'display-buffer-at-bottom))