Function: embark--display-string
embark--display-string is a byte-compiled function defined in
embark.el.
Signature
(embark--display-string STR)
Documentation
Return display STR without display and invisible properties.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark--display-string (str)
;; Note: Keep in sync with vertico--display-string
"Return display STR without display and invisible properties."
(let ((end (length str)) (pos 0) chunks)
(while (< pos end)
(let ((nextd (next-single-property-change pos 'display str end))
(disp (get-text-property pos 'display str)))
(if (stringp disp)
(let ((face (get-text-property pos 'face str)))
(when face
(add-face-text-property
0 (length disp) face t (setq disp (concat disp))))
(setq pos nextd chunks (cons disp chunks)))
(pcase disp (`(space :align-to . ,_) (push " " chunks)))
(while (< pos nextd)
(let ((nexti
(next-single-property-change pos 'invisible str nextd)))
(unless (or (get-text-property pos 'invisible str)
(and (= pos 0) (= nexti end))) ;; full=>no allocation
(push (substring str pos nexti) chunks))
(setq pos nexti))))))
(if chunks (apply #'concat (nreverse chunks)) str)))