Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!mit-eddie!SUN.COM!peck From: peck@SUN.COM Newsgroups: comp.emacs Subject: GNU Emacs on sun-4 Message-ID: <8709161649.AA12389@denali.sun.com> Date: Wed, 16-Sep-87 18:01:01 EDT Article-I.D.: denali.8709161649.AA12389 Posted: Wed Sep 16 18:01:01 1987 Date-Received: Sat, 19-Sep-87 10:45:09 EDT Sender: pooh@eddie.MIT.EDU Lines: 11 There is a bug in pre-18.44 scroll.c that causes emacs to bomb on sun-4 If you don't have 18.48, this simple patch will help: 190,192c190 < cost1 = p1->insertcost + < (i - p1->insertcount >= 0 ? < next_insert_cost[i - p1->insertcount] : 0); - --- > cost1 = p1->insertcost + next_insert_cost[i - p1->insertcount];