aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-12-16 05:53:33 +0000
committerRichard M. Stallman1996-12-16 05:53:33 +0000
commit94bec52a5591c12182f402d24c8702dd6023eeb0 (patch)
tree407ed2123eeda4bb40a08d242da8eb547b4e835e
parent4d2a0879ff9931b65cde2edd8e1b18f56fc3fa30 (diff)
downloademacs-94bec52a5591c12182f402d24c8702dd6023eeb0.tar.gz
emacs-94bec52a5591c12182f402d24c8702dd6023eeb0.zip
Fix previous change.
-rw-r--r--src/fileio.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 9b09b0e32c0..9d7fa4aadd4 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2998,11 +2998,14 @@ before the error is signaled.\n\n\
2998The optional third and fourth arguments BEG and END\n\ 2998The optional third and fourth arguments BEG and END\n\
2999specify what portion of the file to insert.\n\ 2999specify what portion of the file to insert.\n\
3000If VISIT is non-nil, BEG and END must be nil.\n\ 3000If VISIT is non-nil, BEG and END must be nil.\n\
3001\n\
3001If optional fifth argument REPLACE is non-nil,\n\ 3002If optional fifth argument REPLACE is non-nil,\n\
3002it means replace the current buffer contents (in the accessible portion)\n\ 3003it means replace the current buffer contents (in the accessible portion)\n\
3003with the file contents. This is better than simply deleting and inserting\n\ 3004with the file contents. This is better than simply deleting and inserting\n\
3004the whole thing because (1) it preserves some marker positions\n\ 3005the whole thing because (1) it preserves some marker positions\n\
3005and (2) it puts less data in the undo list.") 3006and (2) it puts less data in the undo list.\n\
3007When REPLACE is non-nil, the value is the number of characters actually read,\n\
3008which is often less than the number of characters to be read.")
3006 (filename, visit, beg, end, replace) 3009 (filename, visit, beg, end, replace)
3007 Lisp_Object filename, visit, beg, end, replace; 3010 Lisp_Object filename, visit, beg, end, replace;
3008{ 3011{