aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-19 03:31:13 +0000
committerRichard M. Stallman1996-09-19 03:31:13 +0000
commit6b5d3b89ee6e1e4dde2f2d0d0902fe1c7b2f03a9 (patch)
treecd50f154be4cea979f46d5f24310b865ccce6279 /src
parent5be36e2004f8557fe0690ebd7746fbbcc3115c07 (diff)
downloademacs-6b5d3b89ee6e1e4dde2f2d0d0902fe1c7b2f03a9.tar.gz
emacs-6b5d3b89ee6e1e4dde2f2d0d0902fe1c7b2f03a9.zip
(overlay_strings): Declare pstr using unsigned char.
Diffstat (limited to 'src')
-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)
2098 Returns the string length, and stores the contents indirectly through 2098 Returns the string length, and stores the contents indirectly through
2099 PSTR, if that variable is non-null. The string may be overwritten by 2099 PSTR, if that variable is non-null. The string may be overwritten by
2100 subsequent calls. */ 2100 subsequent calls. */
2101
2101int 2102int
2102overlay_strings (pos, w, pstr) 2103overlay_strings (pos, w, pstr)
2103 int pos; 2104 int pos;
2104 struct window *w; 2105 struct window *w;
2105 char **pstr; 2106 unsigned char **pstr;
2106{ 2107{
2107 Lisp_Object ov, overlay, window, str; 2108 Lisp_Object ov, overlay, window, str;
2108 int startpos, endpos; 2109 int startpos, endpos;