aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-19 04:25:49 +0000
committerRichard M. Stallman1996-09-19 04:25:49 +0000
commitb4222ffacb5e8e101353c09ebba97022a8fdec1b (patch)
treed82579b5719b1962171689ac8e6c79d3f5aa99da /src
parentcbcf50d2c2d65a55396ab0fc1501588738ccd31c (diff)
downloademacs-b4222ffacb5e8e101353c09ebba97022a8fdec1b.tar.gz
emacs-b4222ffacb5e8e101353c09ebba97022a8fdec1b.zip
(display_text_line): Declare ovstr as unsigned char *.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index ab25dc67ebd..48f575cb222 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -2670,7 +2670,7 @@ display_text_line (w, start, vpos, hpos, taboffset)
2670 if (pos < ZV || !zv_strings_seen++) 2670 if (pos < ZV || !zv_strings_seen++)
2671 { 2671 {
2672 int ovlen; 2672 int ovlen;
2673 char *ovstr; 2673 unsigned char *ovstr;
2674 ovlen = overlay_strings (pos, w, &ovstr); 2674 ovlen = overlay_strings (pos, w, &ovstr);
2675 for (; ovlen; ovlen--, ovstr++) 2675 for (; ovlen; ovlen--, ovstr++)
2676 { 2676 {