From: Richard M. Stallman Date: Thu, 19 Sep 1996 03:31:13 +0000 (+0000) Subject: (overlay_strings): Declare pstr using unsigned char. X-Git-Tag: emacs-20.1~3701 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6b5d3b89ee6e1e4dde2f2d0d0902fe1c7b2f03a9;p=emacs.git (overlay_strings): Declare pstr using unsigned char. --- diff --git a/src/buffer.c b/src/buffer.c index 6b59badadb1..963f4bb55c1 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -2098,11 +2098,12 @@ record_overlay_string (ssl, str, str2, pri, size) 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;