Function: dired--highlight-no-subst-chars
dired--highlight-no-subst-chars is a byte-compiled function defined in
dired-aux.el.gz.
Signature
(dired--highlight-no-subst-chars POSITIONS COMMAND MARK)
Source Code
;; Defined in /usr/src/emacs/lisp/dired-aux.el.gz
(defun dired--highlight-no-subst-chars (positions command mark)
(cl-callf substring-no-properties command)
(dolist (pos positions)
(add-face-text-property pos (1+ pos) 'warning nil command))
(if mark
(concat command "\n" (dired--mark-positions positions))
command))