Function: which-key--echo

which-key--echo is a byte-compiled function defined in which-key.el.gz.

Signature

(which-key--echo TEXT)

Documentation

Echo TEXT to minibuffer without logging.

Source Code

;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defun which-key--echo (text)
  "Echo TEXT to minibuffer without logging."
  (let (message-log-max)
    (message "%s" text)))