diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-19 05:20:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-19 05:20:27 +0000 |
commit | 268466edbe1e807739cc6e1a9e07b5b9650c68fa (patch) | |
tree | f6d143b35afb01f42a9fd0424f2aae43e7f7df05 | |
parent | ea48c94dfd6a23d07bc03791b5f8a4f535f6c0f8 (diff) | |
download | emacs-268466edbe1e807739cc6e1a9e07b5b9650c68fa.tar.gz |
(syms_of_fileio): Doc fix.
(Finsert_file_contents): Declare `buffer' as unsigned char.
-rw-r--r-- | src/fileio.c | 4 |
1 files 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; |