diff options
| author | Richard M. Stallman | 1996-12-16 05:53:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-12-16 05:53:33 +0000 |
| commit | 94bec52a5591c12182f402d24c8702dd6023eeb0 (patch) | |
| tree | 407ed2123eeda4bb40a08d242da8eb547b4e835e | |
| parent | 4d2a0879ff9931b65cde2edd8e1b18f56fc3fa30 (diff) | |
| download | emacs-94bec52a5591c12182f402d24c8702dd6023eeb0.tar.gz emacs-94bec52a5591c12182f402d24c8702dd6023eeb0.zip | |
Fix previous change.
| -rw-r--r-- | src/fileio.c | 5 |
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\ | |||
| 2998 | The optional third and fourth arguments BEG and END\n\ | 2998 | The optional third and fourth arguments BEG and END\n\ |
| 2999 | specify what portion of the file to insert.\n\ | 2999 | specify what portion of the file to insert.\n\ |
| 3000 | If VISIT is non-nil, BEG and END must be nil.\n\ | 3000 | If VISIT is non-nil, BEG and END must be nil.\n\ |
| 3001 | \n\ | ||
| 3001 | If optional fifth argument REPLACE is non-nil,\n\ | 3002 | If optional fifth argument REPLACE is non-nil,\n\ |
| 3002 | it means replace the current buffer contents (in the accessible portion)\n\ | 3003 | it means replace the current buffer contents (in the accessible portion)\n\ |
| 3003 | with the file contents. This is better than simply deleting and inserting\n\ | 3004 | with the file contents. This is better than simply deleting and inserting\n\ |
| 3004 | the whole thing because (1) it preserves some marker positions\n\ | 3005 | the whole thing because (1) it preserves some marker positions\n\ |
| 3005 | and (2) it puts less data in the undo list.") | 3006 | and (2) it puts less data in the undo list.\n\ |
| 3007 | When REPLACE is non-nil, the value is the number of characters actually read,\n\ | ||
| 3008 | which 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 | { |