diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-09-19 04:25:49 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-09-19 04:25:49 +0000 |
commit | 276c2ab39c2b60080f13c56f62decb9e192d1433 (patch) | |
tree | 5e71a10c5af25a73b070bca1b6153b3e70fa8f02 /src | |
parent | 7e27f2d19fb755e0f9b1144fc036fc794036f068 (diff) | |
download | emacs-276c2ab39c2b60080f13c56f62decb9e192d1433.tar.gz |
(display_text_line): Declare ovstr as unsigned char *.
Diffstat (limited to 'src')
-rw-r--r-- | src/xdisp.c | 2 |
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) if (pos < ZV || !zv_strings_seen++) { int ovlen; - char *ovstr; + unsigned char *ovstr; ovlen = overlay_strings (pos, w, &ovstr); for (; ovlen; ovlen--, ovstr++) { |