Function: dired--no-subst-ask
dired--no-subst-ask is a byte-compiled function defined in
dired-aux.el.gz.
Signature
(dired--no-subst-ask CHAR NB-OCCUR DETAILS)
Source Code
;; Defined in /usr/src/emacs/lisp/dired-aux.el.gz
(defun dired--no-subst-ask (char nb-occur details)
(let ((hilit-char (propertize (string char) 'face 'warning))
(choices `(?y ?n ?? ,@(when details '(?^)))))
(read-char-choice
(format-message
(ngettext
"%d occurrence of `%s' will not be substituted. Proceed? (%s) "
"%d occurrences of `%s' will not be substituted. Proceed? (%s) "
nb-occur)
nb-occur hilit-char (mapconcat #'string choices ", "))
choices)))