Module Name: src Committed By: rillig Date: Fri Aug 21 02:20:48 UTC 2020
Modified Files: src/usr.bin/make: arch.c dir.c job.c lst.c lst.h main.c make.c meta.c parse.c suff.c targ.c Log Message: make(1): remove unused code for circular lists The list library had probably been imported from a general-purpose library that also supported circular lists. These are not used by make though. After replacing Lst_Init(FALSE) with Lst_Init(), only a single call to Lst_Init remained with a non-constant argument, and that was in Lst_Concat, which was to be expected. To generate a diff of this commit: cvs rdiff -u -r1.83 -r1.84 src/usr.bin/make/arch.c cvs rdiff -u -r1.92 -r1.93 src/usr.bin/make/dir.c src/usr.bin/make/meta.c cvs rdiff -u -r1.206 -r1.207 src/usr.bin/make/job.c cvs rdiff -u -r1.4 -r1.5 src/usr.bin/make/lst.c cvs rdiff -u -r1.21 -r1.22 src/usr.bin/make/lst.h cvs rdiff -u -r1.304 -r1.305 src/usr.bin/make/main.c cvs rdiff -u -r1.103 -r1.104 src/usr.bin/make/make.c cvs rdiff -u -r1.251 -r1.252 src/usr.bin/make/parse.c cvs rdiff -u -r1.96 -r1.97 src/usr.bin/make/suff.c cvs rdiff -u -r1.64 -r1.65 src/usr.bin/make/targ.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.