changeset 7549:ccb8b7f8dce7

(syms_of_fileio): Doc fix. (Finsert_file_contents): Declare `buffer' as unsigned char.
author Richard M. Stallman <rms@gnu.org>
date Thu, 19 May 1994 05:20:27 +0000
parents 8aa09b7f5ad8
children 9c6abdf5541a
files src/fileio.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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;