# HG changeset patch # User Richard M. Stallman # Date 769324827 0 # Node ID ccb8b7f8dce7343c7c7e12f72bd1b8a024ed3f43 # Parent 8aa09b7f5ad883f96e422a596de9556716d05523 (syms_of_fileio): Doc fix. (Finsert_file_contents): Declare `buffer' as unsigned char. diff -r 8aa09b7f5ad8 -r ccb8b7f8dce7 src/fileio.c --- a/src/fileio.c Thu May 19 04:30:14 1994 +0000 +++ b/src/fileio.c Thu May 19 05:20:27 1994 +0000 @@ -2663,7 +2663,7 @@ #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 @@ 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;