summaryrefslogtreecommitdiff
path: root/src/fileio.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-05-19 05:20:27 +0000
committerRichard M. Stallman <rms@gnu.org>1994-05-19 05:20:27 +0000
commit9bc0b52407519e78d2abc8a0077eca6ea8193b03 (patch)
tree05ff3d41c313dfd6abed736b94a18eee50536ac4 /src/fileio.c
parent9cdef001918ba25283182e21f6c5896d360ef878 (diff)
downloademacs-9bc0b52407519e78d2abc8a0077eca6ea8193b03.tar.gz
(syms_of_fileio): Doc fix.
(Finsert_file_contents): Declare `buffer' as unsigned char.
Diffstat (limited to 'src/fileio.c')
-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.")
#else /* MSDOS */
if (!NILP (replace))
{
- char buffer[1 << 14];
+ unsigned char buffer[1 << 14];
int same_at_start = BEGV;
int same_at_end = ZV;
int overlap;
@@ -4056,7 +4056,7 @@ lists are merged destructively.");
Vwrite_region_annotate_functions = Qnil;
DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers,
- "A list of file names for which handlers should not be used.\n\
+ "A list of file name handlers that temporarily should not be used.\n\
This applies only to the operation `inhibit-file-name-operation'.");
Vinhibit_file_name_handlers = Qnil;