diff options
| author | Richard M. Stallman | 1993-11-12 21:17:43 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-11-12 21:17:43 +0000 |
| commit | 246cfea5ccfbeec576c256c9cb90723ec13369a8 (patch) | |
| tree | a48c7c7e4d013d6c38ee5076083373eb96007bda /src | |
| parent | ede41463ee207abd4a2088fdcf1276567680f7af (diff) | |
| download | emacs-246cfea5ccfbeec576c256c9cb90723ec13369a8.tar.gz emacs-246cfea5ccfbeec576c256c9cb90723ec13369a8.zip | |
(syms_of_fileio): Fix missing \n\'s.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/fileio.c b/src/fileio.c index 4b3a60e904c..5b5c78c6f53 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -3606,20 +3606,20 @@ for its argument."); | |||
| 3606 | Vfile_name_handler_alist = Qnil; | 3606 | Vfile_name_handler_alist = Qnil; |
| 3607 | 3607 | ||
| 3608 | DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions, | 3608 | DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions, |
| 3609 | "A list of functions to be called at the end of `insert-file-contents'. | 3609 | "A list of functions to be called at the end of `insert-file-contents'.\n\ |
| 3610 | Each is passed one argument, the number of bytes inserted. It should return | 3610 | Each is passed one argument, the number of bytes inserted. It should return\n\ |
| 3611 | the new byte count, and leave point the same. If `insert-file-contents' is | 3611 | the new byte count, and leave point the same. If `insert-file-contents' is\n\ |
| 3612 | intercepted by a handler from `file-name-handler-alist', that handler is | 3612 | intercepted by a handler from `file-name-handler-alist', that handler is\n\ |
| 3613 | responsible for calling the after-insert-file-functions if appropriate."); | 3613 | responsible for calling the after-insert-file-functions if appropriate."); |
| 3614 | Vafter_insert_file_functions = Qnil; | 3614 | Vafter_insert_file_functions = Qnil; |
| 3615 | 3615 | ||
| 3616 | DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions, | 3616 | DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions, |
| 3617 | "A list of functions to be called at the start of `write-region'. | 3617 | "A list of functions to be called at the start of `write-region'.\n\ |
| 3618 | Each is passed two arguments, START and END as for `write-region'. It should | 3618 | Each is passed two arguments, START and END as for `write-region'. It should\n\ |
| 3619 | return a list of pairs (POSITION . STRING) of strings to be effectively | 3619 | return a list of pairs (POSITION . STRING) of strings to be effectively\n\ |
| 3620 | inserted at the specified positions of the file being written (1 means to | 3620 | inserted at the specified positions of the file being written (1 means to\n\ |
| 3621 | insert before the first byte written). The POSITIONs must be sorted into | 3621 | insert before the first byte written). The POSITIONs must be sorted into\n\ |
| 3622 | increasing order. If there are several functions in the list, the several | 3622 | increasing order. If there are several functions in the list, the several\n\ |
| 3623 | lists are merged destructively."); | 3623 | lists are merged destructively."); |
| 3624 | Vwrite_region_annotate_functions = Qnil; | 3624 | Vwrite_region_annotate_functions = Qnil; |
| 3625 | 3625 | ||