]> git.eshelyaron.com Git - emacs.git/commitdiff
Undo spurious change.
authorAndreas Schwab <schwab@suse.de>
Sun, 16 Dec 2007 10:54:19 +0000 (10:54 +0000)
committerAndreas Schwab <schwab@suse.de>
Sun, 16 Dec 2007 10:54:19 +0000 (10:54 +0000)
src/fileio.c

index dbdeef7076acfad3e3c9519e2c8f8bf211e9743b..19558fa332a11a15533a05b275b07896b3b3399d 100644 (file)
@@ -3694,26 +3694,26 @@ read_non_regular_quit ()
 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
        1, 5, 0,
        doc: /* Insert contents of file FILENAME after point.
-              Returns list of absolute file name and number of characters inserted.
-              If second argument VISIT is non-nil, the buffer's visited filename and
-              last save file modtime are set, and it is marked unmodified.  If
-              visiting and the file does not exist, visiting is completed before the
-              error is signaled.
-
-              The optional third and fourth arguments BEG and END specify what portion
-              of the file to insert.  These arguments count bytes in the file, not
-              characters in the buffer.  If VISIT is non-nil, BEG and END must be nil.
-
-              If optional fifth argument REPLACE is non-nil, replace the current
-              buffer contents (in the accessible portion) with the file contents.
-              This is better than simply deleting and inserting the whole thing
-              because (1) it preserves some marker positions and (2) it puts less data
-              in the undo list.  When REPLACE is non-nil, the second return value is
-              the number of characters that replace previous buffer contents.
-
-              This function does code conversion according to the value of
-              `coding-system-for-read' or `file-coding-system-alist', and sets the
-              variable `last-coding-system-used' to the coding system actually used.  */)
+Returns list of absolute file name and number of characters inserted.
+If second argument VISIT is non-nil, the buffer's visited filename and
+last save file modtime are set, and it is marked unmodified.  If
+visiting and the file does not exist, visiting is completed before the
+error is signaled.
+
+The optional third and fourth arguments BEG and END specify what portion
+of the file to insert.  These arguments count bytes in the file, not
+characters in the buffer.  If VISIT is non-nil, BEG and END must be nil.
+
+If optional fifth argument REPLACE is non-nil, replace the current
+buffer contents (in the accessible portion) with the file contents.
+This is better than simply deleting and inserting the whole thing
+because (1) it preserves some marker positions and (2) it puts less data
+in the undo list.  When REPLACE is non-nil, the second return value is
+the number of characters that replace previous buffer contents.
+
+This function does code conversion according to the value of
+`coding-system-for-read' or `file-coding-system-alist', and sets the
+variable `last-coding-system-used' to the coding system actually used.  */)
      (filename, visit, beg, end, replace)
      Lisp_Object filename, visit, beg, end, replace;
 {