Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 12/29/1996 10:40:03
cgd
Sun Dec 29 02:34:15 PST 1996
Update of /cvsroot/src/usr.bin/tip
In directory netbsd1:/var/slash-tmp/cvs-serv21416

Modified Files:
	acu.c cu.c remote.c tip.c tip.h tipout.c value.c 
Log Message:
replace old zzhack structure (YUCK!) and number(), boolean(), character(),
and address() macros with new macros of the same names (to get values),
and macros with those names but with "set" prepended and which take a
second argument (to set values).  The new macros use type casts to do
type conversion, which is much cleaner than using a union and making
endianness-related hacks to get the right 'short's and 'char's from
the right array indices.  (YUCK! again, for good measure.)


cgd
Sun Dec 29 02:36:39 PST 1996
Update of /cvsroot/src/usr.bin/tip
In directory netbsd1:/var/slash-tmp/cvs-serv21575

Modified Files:
	Makefile 
Log Message:
add -ansi -pedantic to CFLAGS, so that people won't try to use the behaviour
of the old zzhack-access macros, which with the current macro definitions
would cause a cast value to be used as an lvalue, which is a gcc extension,
but _not_ what we want.


cgd
Sun Dec 29 02:38:23 PST 1996
Update of /cvsroot/src/usr.bin/tip
In directory netbsd1:/var/slash-tmp/cvs-serv22361

Modified Files:
	tip.c partab.c 
Log Message:
make evenpartab be of type 'unsigned char' to avoid -ansi -pedantic errors