From owner-cvs-bin Fri Aug 8 08:44:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA25041 for cvs-bin-outgoing; Fri, 8 Aug 1997 08:44:11 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA24938; Fri, 8 Aug 1997 08:43:43 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id BAA27636; Sat, 9 Aug 1997 01:40:10 +1000 Date: Sat, 9 Aug 1997 01:40:10 +1000 From: Bruce Evans Message-Id: <199708081540.BAA27636@godzilla.zeta.org.au> To: cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, steve@FreeBSD.ORG Subject: Re: cvs commit: src/bin/csh Makefile alloc.c char.c const.c csh.c csh.h dir.c dol.c err.c exec.c exp.c file.c func.c glob.c hist.c init.c lex.c misc.c parse.c pathnames.h proc.c sem.c set.c str.c time.c Sender: owner-cvs-bin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >steve 1997/08/07 14:42:20 PDT > > Modified files: > bin/csh Makefile alloc.c char.c const.c csh.c > csh.h dir.c dol.c err.c exec.c exp.c > file.c func.c glob.c hist.c init.c lex.c > misc.c parse.c pathnames.h proc.c sem.c > set.c str.c time.c > Log: > Changes include: sccsid -> rcsid, bcopy -> memcpy, don't use the > register keyword, and -Wall cleaning. > > Obtained from: similar changes in NetBSD You should merge with Lite2 first. Lite2 changed at least bcopy differently - it removed the bogus casts (although this is wrong for K&R). I don't like removing register any more than removing trailing whitespace. `register' occured on 473 lines in csh, and removing it created 95K of context diffs. Bruce