# HG changeset patch # User Richard M. Stallman # Date 843103873 0 # Node ID b311d87555301c909199d1b17d351d60ebeaaff9 # Parent fa3885bdc49cc06598555b8b97ac6f4d30a52521 (overlay_strings): Declare pstr using unsigned char. diff -r fa3885bdc49c -r b311d8755530 src/buffer.c --- a/src/buffer.c Thu Sep 19 03:22:51 1996 +0000 +++ b/src/buffer.c Thu Sep 19 03:31:13 1996 +0000 @@ -2098,11 +2098,12 @@ Returns the string length, and stores the contents indirectly through PSTR, if that variable is non-null. The string may be overwritten by subsequent calls. */ + int overlay_strings (pos, w, pstr) int pos; struct window *w; - char **pstr; + unsigned char **pstr; { Lisp_Object ov, overlay, window, str; int startpos, endpos;