]> git.eshelyaron.com Git - emacs.git/commitdiff
(find-file-literally): New function.
authorRichard M. Stallman <rms@gnu.org>
Tue, 8 Jul 1997 09:57:37 +0000 (09:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 8 Jul 1997 09:57:37 +0000 (09:57 +0000)
lisp/files.el

index c794719964cac9d59a9836a85602ab73e7458b06..d2557e4bee7a5c039c9c6e807c5a3610651c74fe 100644 (file)
@@ -943,6 +943,21 @@ Optional second arg RAWFILE non-nil means the file is read literally"
            (after-find-file error (not nowarn))
            (setq buf (current-buffer)))))
       buf)))
+
+(defun find-file-literally (filename) 
+  "Visit file FILENAME with no conversion of any kind.
+Format conversion and character code conversion are both disabled,
+and multibyte characters are disabled in the resulting buffer.
+Automatic uncompression is also disabled."
+  (interactive "FFind file literally: ")
+  (let ((coding-system-for-read 'no-conversion)
+       (coding-system-for-write 'no-conversion)
+       (jka-compr-compression-info-list nil)
+       (format-alist nil)
+       (after-insert-file-functions nil))
+    (prog1
+       (find-file filename)
+      (setq enable-multibyte-characters nil))))
 \f
 (defvar after-find-file-from-revert-buffer nil)