aboutsummaryrefslogtreecommitdiffstats
path: root/src/dispextern.h
diff options
context:
space:
mode:
authorKim F. Storm2004-02-13 23:29:58 +0000
committerKim F. Storm2004-02-13 23:29:58 +0000
commit12fde2dcdfe56cd65b540f571073ba62931a250d (patch)
treef7eb7781476119cffb488231e52dc20893da7c34 /src/dispextern.h
parent0881a0fd1488ffb9f916b24d9eecb5f95d758de0 (diff)
downloademacs-12fde2dcdfe56cd65b540f571073ba62931a250d.tar.gz
emacs-12fde2dcdfe56cd65b540f571073ba62931a250d.zip
(struct draw_fringe_bitmap_params): Change member
bits from char to short to facilitate wider bitmaps. (struct redisplay_interface): Fix prototype of define_fringe_bitmap member.
Diffstat (limited to 'src/dispextern.h')
-rw-r--r--src/dispextern.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index ec6750086ea..fc27c6e185e 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1641,7 +1641,7 @@ extern int face_change_count;
1641struct draw_fringe_bitmap_params 1641struct draw_fringe_bitmap_params
1642{ 1642{
1643 int which; /* enum fringe_bitmap_type */ 1643 int which; /* enum fringe_bitmap_type */
1644 unsigned char *bits; 1644 unsigned short *bits;
1645 int wd, h, dh; 1645 int wd, h, dh;
1646 int x, y; 1646 int x, y;
1647 int bx, nx, by, ny; 1647 int bx, nx, by, ny;
@@ -2189,7 +2189,7 @@ struct redisplay_interface
2189 struct draw_fringe_bitmap_params *p)); 2189 struct draw_fringe_bitmap_params *p));
2190 2190
2191 /* Define and destroy fringe bitmap no. WHICH. */ 2191 /* Define and destroy fringe bitmap no. WHICH. */
2192 void (*define_fringe_bitmap) P_ ((int which, unsigned char *bits, 2192 void (*define_fringe_bitmap) P_ ((int which, unsigned short *bits,
2193 int h, int wd)); 2193 int h, int wd));
2194 void (*destroy_fringe_bitmap) P_ ((int which)); 2194 void (*destroy_fringe_bitmap) P_ ((int which));
2195 2195