changeset 19199:da8774e1207b

(insert-file-contents-literally): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Thu, 07 Aug 1997 02:43:11 +0000
parents 49274b3596a7
children 74ec766c0ada
files lisp/files.el
diffstat 1 files changed, 5 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/files.el	Thu Aug 07 02:12:40 1997 +0000
+++ b/lisp/files.el	Thu Aug 07 02:43:11 1997 +0000
@@ -801,14 +801,12 @@
 	  found))))
 
 (defun insert-file-contents-literally (filename &optional visit beg end replace)
-  "Like `insert-file-contents', q.v., but only reads in the file.
-A buffer may be modified in several ways after reading into the buffer due
-to advanced Emacs features, such as file-name-handlers, format decoding,
-find-file-hooks, etc.
-  This function ensures that none of these modifications will take place.
+  "Like `insert-file-contents', but only reads in the file literally.
+A buffer may be modified in several ways after reading into the buffer,
+to Emacs features such as format decoding, character code
+conversion, find-file-hooks, automatic uncompression, etc.
 
-This function does not work for remote files, because it turns off
-file name handlers and remote file access uses a file name handler."
+This function ensures that none of these modifications will take place."
   (let ((format-alist nil)
 	(after-insert-file-functions nil)
 	(coding-system-for-read 'no-conversion)