Module Name: src Committed By: rillig Date: Sun Aug 9 14:02:15 UTC 2020
Modified Files: src/usr.bin/make: var.c Log Message: make(1): revert C99 initializer in ApplyModifiers The code of usr.bin/make is supposed to be C90-compatible. That's why it neither uses line-end comments nor declaration-after-statement nor a few other features. The fields that were copied "by name" did not get any additional comments, only the ones with literal values did, since it's hard to see what these mean. This style of initializer has the additional benefit that a missing or extraneous initializer-item would lead to a compile-time error, rather than going undetected. To generate a diff of this commit: cvs rdiff -u -r1.442 -r1.443 src/usr.bin/make/var.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.