From 268466edbe1e807739cc6e1a9e07b5b9650c68fa Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 19 May 1994 05:20:27 +0000 Subject: [PATCH] (syms_of_fileio): Doc fix. (Finsert_file_contents): Declare `buffer' as unsigned char. --- src/fileio.c | 4 ++-- 1 file 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; -- 2.39.5