Function: dired-switches-escape-p
dired-switches-escape-p is a byte-compiled function defined in
dired.el.gz.
Signature
(dired-switches-escape-p SWITCHES)
Documentation
Return non-nil if the string SWITCHES contains -b or --escape.
Source Code
;; Defined in /usr/src/emacs/lisp/dired.el.gz
(defun dired-switches-escape-p (switches)
"Return non-nil if the string SWITCHES contains -b or --escape."
;; Do not match things like "--block-size" that happen to contain "b".
(dired-check-switches switches "b" "escape"))