Function: hui:list-remove-text-properties
hui:list-remove-text-properties is a byte-compiled function defined in
hui.el.
Signature
(hui:list-remove-text-properties LST)
Documentation
Return LST, a list, with text properties removed from any string elements.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui.el
(defun hui:list-remove-text-properties (lst)
"Return LST, a list, with text properties removed from any string elements."
(mapcar (lambda (elt) (if (stringp elt) (substring-no-properties elt) elt))
lst))