aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-19 05:20:27 +0000
committerRichard M. Stallman1994-05-19 05:20:27 +0000
commit268466edbe1e807739cc6e1a9e07b5b9650c68fa (patch)
treef6d143b35afb01f42a9fd0424f2aae43e7f7df05
parentea48c94dfd6a23d07bc03791b5f8a4f535f6c0f8 (diff)
downloademacs-268466edbe1e807739cc6e1a9e07b5b9650c68fa.tar.gz
emacs-268466edbe1e807739cc6e1a9e07b5b9650c68fa.zip
(syms_of_fileio): Doc fix.
(Finsert_file_contents): Declare `buffer' as unsigned char.
-rw-r--r--src/fileio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c
index d4f832d64be..abfa6546191 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -2663,7 +2663,7 @@ and (2) it puts less data in the undo list.")
2663#else /* MSDOS */ 2663#else /* MSDOS */
2664 if (!NILP (replace)) 2664 if (!NILP (replace))
2665 { 2665 {
2666 char buffer[1 << 14]; 2666 unsigned char buffer[1 << 14];
2667 int same_at_start = BEGV; 2667 int same_at_start = BEGV;
2668 int same_at_end = ZV; 2668 int same_at_end = ZV;
2669 int overlap; 2669 int overlap;
@@ -4056,7 +4056,7 @@ lists are merged destructively.");
4056 Vwrite_region_annotate_functions = Qnil; 4056 Vwrite_region_annotate_functions = Qnil;
4057 4057
4058 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers, 4058 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers,
4059 "A list of file names for which handlers should not be used.\n\ 4059 "A list of file name handlers that temporarily should not be used.\n\
4060This applies only to the operation `inhibit-file-name-operation'."); 4060This applies only to the operation `inhibit-file-name-operation'.");
4061 Vinhibit_file_name_handlers = Qnil; 4061 Vinhibit_file_name_handlers = Qnil;
4062 4062