From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from groucho.cse.psu.edu ([130.203.2.12]) by hawkwind.utcs.utoronto.ca with SMTP id <24019>; Thu, 2 Jun 1994 15:22:31 -0400 Received: from localhost by groucho.cse.psu.edu with SMTP id <3029>; Thu, 2 Jun 1994 15:21:57 -0400 To: sam-fans@hawkwind.utcs.toronto.edu Subject: Re: 9term fix for sunos 4.1.3 In-reply-to: Your message of "Thu, 02 Jun 1994 10:56:50 EDT." <199406021456.KAA06236@penfold.cc.gatech.edu> Date: Thu, 2 Jun 1994 15:21:45 -0400 From: Scott Schwartz Message-Id: <94Jun2.152157edt.3029@groucho.cse.psu.edu> Another fix: diff -ur libtext/click.c libtext-/click.c --- libtext/click.c Sat Jun 5 23:30:14 1993 +++ libtext-/click.c Wed Nov 10 17:17:44 1993 @@ -4,12 +4,12 @@ #include #include -static Rune l1[] = { '{', '[', '(', '<', '\253', 0}; +static Rune l1[] = { '{', '[', '(', '<', 0253, 0}; static Rune l2[] = { '\n', 0}; static Rune l3[] = { '\'', '"', '`', 0}; Rune *left[]= { l1, l2, l3, 0}; -static Rune r1[] = {'}', ']', ')', '>', '\273', 0}; +static Rune r1[] = {'}', ']', ')', '>', 0273, 0}; static Rune r2[] = {'\n', 0}; static Rune r3[] = {'\'', '"', '`', 0}; Rune *right[]= { r1, r2, r3, 0};