aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-11-12 21:17:43 +0000
committerRichard M. Stallman1993-11-12 21:17:43 +0000
commit246cfea5ccfbeec576c256c9cb90723ec13369a8 (patch)
treea48c7c7e4d013d6c38ee5076083373eb96007bda /src
parentede41463ee207abd4a2088fdcf1276567680f7af (diff)
downloademacs-246cfea5ccfbeec576c256c9cb90723ec13369a8.tar.gz
emacs-246cfea5ccfbeec576c256c9cb90723ec13369a8.zip
(syms_of_fileio): Fix missing \n\'s.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c20
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\
3610Each is passed one argument, the number of bytes inserted. It should return 3610Each is passed one argument, the number of bytes inserted. It should return\n\
3611the new byte count, and leave point the same. If `insert-file-contents' is 3611the new byte count, and leave point the same. If `insert-file-contents' is\n\
3612intercepted by a handler from `file-name-handler-alist', that handler is 3612intercepted by a handler from `file-name-handler-alist', that handler is\n\
3613responsible for calling the after-insert-file-functions if appropriate."); 3613responsible 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\
3618Each is passed two arguments, START and END as for `write-region'. It should 3618Each is passed two arguments, START and END as for `write-region'. It should\n\
3619return a list of pairs (POSITION . STRING) of strings to be effectively 3619return a list of pairs (POSITION . STRING) of strings to be effectively\n\
3620inserted at the specified positions of the file being written (1 means to 3620inserted at the specified positions of the file being written (1 means to\n\
3621insert before the first byte written). The POSITIONs must be sorted into 3621insert before the first byte written). The POSITIONs must be sorted into\n\
3622increasing order. If there are several functions in the list, the several 3622increasing order. If there are several functions in the list, the several\n\
3623lists are merged destructively."); 3623lists are merged destructively.");
3624 Vwrite_region_annotate_functions = Qnil; 3624 Vwrite_region_annotate_functions = Qnil;
3625 3625