Function: which-key--debug-message
which-key--debug-message is a macro defined in which-key.el.gz.
Signature
(which-key--debug-message &rest MSG)
Source Code
;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defmacro which-key--debug-message (&rest msg)
`(when which-key--debug-buffer-name
(let ((buf (get-buffer-create which-key--debug-buffer-name))
(fmt-msg (format ,@msg)))
(with-current-buffer buf
(goto-char (point-max))
(insert "\n" fmt-msg "\n")))))