From: Richard M. Stallman Date: Thu, 19 May 1994 05:20:27 +0000 (+0000) Subject: (syms_of_fileio): Doc fix. X-Git-Tag: emacs-19.34~8304 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=268466edbe1e807739cc6e1a9e07b5b9650c68fa;p=emacs.git (syms_of_fileio): Doc fix. (Finsert_file_contents): Declare `buffer' as unsigned char. --- 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;