]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_fileio): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Thu, 19 May 1994 05:20:27 +0000 (05:20 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 19 May 1994 05:20:27 +0000 (05:20 +0000)
(Finsert_file_contents): Declare `buffer' as unsigned char.

src/fileio.c

index d4f832d64be9d419a6d5d6dd65d96ccc87a7d243..abfa6546191ec8058c4b9f35c58ead8be9696ea4 100644 (file)
@@ -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;