Function: w32-remove-untranslated-filesystem
w32-remove-untranslated-filesystem is an interactive and byte-compiled
function defined in dos-w32.el.gz.
Signature
(w32-remove-untranslated-filesystem FILESYSTEM)
Documentation
Remove FILESYSTEM from the list of filesystems that do not require CR/LF translation. FILESYSTEM is a string containing the directory prefix corresponding to the filesystem. For example, for a Unix filesystem mounted on drive Z:, FILESYSTEM could be "Z:".
Key Bindings
Aliases
remove-untranslated-filesystem (obsolete since 24.4)
Source Code
;; Defined in /usr/src/emacs/lisp/dos-w32.el.gz
(defun w32-remove-untranslated-filesystem (filesystem)
"Remove FILESYSTEM from the list of filesystems that do not require
CR/LF translation. FILESYSTEM is a string containing the directory
prefix corresponding to the filesystem. For example, for a Unix
filesystem mounted on drive Z:, FILESYSTEM could be \"Z:\"."
(interactive "fUntranslated file system: ")
(setq w32-untranslated-filesystem-list
(delete (w32-untranslated-canonical-name filesystem)
w32-untranslated-filesystem-list)))