summaryrefslogtreecommitdiff
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-09-19 03:31:13 +0000
committerRichard M. Stallman <rms@gnu.org>1996-09-19 03:31:13 +0000
commit0cfd7d29a4a7a77a119abce4f911a378b759b81f (patch)
treea9f7d8ee171abe250c648e659e31110d7561aaa4 /src/buffer.c
parent7fc67d31b8268c05ddd9c20b3cc65e75058ecb60 (diff)
downloademacs-0cfd7d29a4a7a77a119abce4f911a378b759b81f.tar.gz
(overlay_strings): Declare pstr using unsigned char.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c3
1 files changed, 2 insertions, 1 deletions
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;