diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/scroll.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scroll.c b/src/scroll.c index a29f2d37f54..240005b4e32 100644 --- a/src/scroll.c +++ b/src/scroll.c | |||
| @@ -41,13 +41,13 @@ struct matrix_elt | |||
| 41 | int deletecost; | 41 | int deletecost; |
| 42 | /* Number of inserts so far in this run of inserts, | 42 | /* Number of inserts so far in this run of inserts, |
| 43 | for the cost in insertcost. */ | 43 | for the cost in insertcost. */ |
| 44 | unsigned char insertcount; | 44 | int insertcount; |
| 45 | /* Number of deletes so far in this run of deletes, | 45 | /* Number of deletes so far in this run of deletes, |
| 46 | for the cost in deletecost. */ | 46 | for the cost in deletecost. */ |
| 47 | unsigned char deletecount; | 47 | int deletecount; |
| 48 | /* Number of writes so far since the last insert | 48 | /* Number of writes so far since the last insert |
| 49 | or delete for the cost in writecost. */ | 49 | or delete for the cost in writecost. */ |
| 50 | unsigned char writecount; | 50 | int writecount; |
| 51 | }; | 51 | }; |
| 52 | 52 | ||
| 53 | static void do_direct_scrolling (struct frame *, | 53 | static void do_direct_scrolling (struct frame *, |