Module Name: src Committed By: rillig Date: Sat Nov 21 19:15:06 UTC 2020
Modified Files: src/usr.bin/make: make.h suff.c Log Message: make(1): rename type Suff to Suffix This avoids confusion with the module suff.c of the same name. The existing naming convention is that the module's public functions are named Suff_Func and its private functions are named SuffFunc. This collides with the naming convention that a the functions of the type Suff are called Suff_Func as well. To resolve this collision, rename Suff to Suffix. The related types like SuffList and the affected functions like SuffRef will be renamed in a follow-up commit. To generate a diff of this commit: cvs rdiff -u -r1.211 -r1.212 src/usr.bin/make/make.h cvs rdiff -u -r1.267 -r1.268 src/usr.bin/make/suff.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.