[ont.micro.mac] SUMACC bugs

info-mac@utcsrgv.UUCP (info-mac) (06/26/84)

Date: Fri, 22 Jun 84 18:57:57 pdt
From: Bill Croft <uw-beaver!croft@safe>
To: info-mac@sumex
Subject: SUMACC bugs
Cc: croft@SUMEX-AIM.ARPA, sumacc@sumex

Here are some bug fixes for SUMACC. 

This first bug was a glitch in the standard file SFReply structure:

+ diff h/packintf.h- h/packintf.h 
77,78c77,78
< 	short	good;		/* ignore if false */
< 	short	copy;
---
> 	char	good;		/* ignore if false */
> 	char	copy;

This was a misdeclaration of the p2cstr subroutine;  it's really a
subroutine, not a function. 

+ diff h/quickdraw.h- h/quickdraw.h 
287c287
< char	*p2cstr();		/* "casts" Pascal string into C string */
---
> void	p2cstr();		/* convert Pascal string into C string */

A tip of the hat to Bill Schilit at Columbia and Mike Schuster at CALTECH
for reporting these.