Function: quail-require-guidance-buf
quail-require-guidance-buf is a byte-compiled function defined in
quail.el.gz.
Signature
(quail-require-guidance-buf)
Documentation
Return t if the current Quail package requires showing guidance buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/international/quail.el.gz
(defun quail-require-guidance-buf ()
"Return t if the current Quail package requires showing guidance buffer."
(and input-method-verbose-flag
(if (eq input-method-verbose-flag 'default)
(not (and (eq (selected-window) (minibuffer-window))
(quail-simple)))
(if (eq input-method-verbose-flag 'complex-only)
(not (quail-simple))
t))))