Function: find-file-text
find-file-text is an interactive and byte-compiled function defined in
dos-w32.el.gz.
Signature
(find-file-text FILENAME)
Documentation
Visit file FILENAME and treat it as a text file.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/dos-w32.el.gz
(defun find-file-text (filename)
"Visit file FILENAME and treat it as a text file."
(interactive "FFind file text: ")
(let ((coding-system-for-read 'undecided-dos))
(with-suppressed-warnings ((interactive-only find-file))
(find-file filename))))