Function: which-key--propertize
which-key--propertize is a byte-compiled function defined in
which-key.el.gz.
Signature
(which-key--propertize STRING &rest PROPERTIES)
Documentation
Version of propertize that checks type of STRING.
Source Code
;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defun which-key--propertize (string &rest properties)
"Version of `propertize' that checks type of STRING."
(when (stringp string)
(apply #'propertize string properties)))