Function: tramp-smb-shell-quote-argument

tramp-smb-shell-quote-argument is a byte-compiled function defined in tramp-smb.el.gz.

Signature

(tramp-smb-shell-quote-argument S)

Documentation

Similar to shell-quote-argument, but uses Windows cmd syntax.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-smb.el.gz
(defun tramp-smb-shell-quote-argument (s)
  "Similar to `shell-quote-argument', but uses Windows cmd syntax."
  (let ((system-type 'ms-dos))
    (tramp-unquote-shell-quote-argument s)))