From: Scott Corley Date: Mon, 8 Oct 2018 06:21:40 +0000 (-0700) Subject: Fix overflow lockup with frames > 255 lines X-Git-Tag: emacs-26.1.90~102 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=940ae156043c27101759c1577697d3a09d5bc948;p=emacs.git Fix overflow lockup with frames > 255 lines Backport from master. * src/scroll.c (struct matrix_elt): Change unsigned char fields to int to handle frames with more than 255 lines (Bug#32951). Copyright-paperwork-exempt: yes --- diff --git a/src/scroll.c b/src/scroll.c index 8a53f9614f7..7751a0885a1 100644 --- a/src/scroll.c +++ b/src/scroll.c @@ -47,13 +47,13 @@ struct matrix_elt int deletecost; /* Number of inserts so far in this run of inserts, for the cost in insertcost. */ - unsigned char insertcount; + int insertcount; /* Number of deletes so far in this run of deletes, for the cost in deletecost. */ - unsigned char deletecount; + int deletecount; /* Number of writes so far since the last insert or delete for the cost in writecost. */ - unsigned char writecount; + int writecount; }; static void do_direct_scrolling (struct frame *,