Module Name: src Committed By: rillig Date: Tue Feb 23 00:11:07 UTC 2021
Modified Files: src/usr.bin/make: var.c Log Message: make: fix local variable name for parsing arguments The variable name 'arg' was misleading since after a successful TryParseTime, it would no longer point to the argument of the variable modifier, but to the _end_ of the argument. To reduce confusion, use p instead, like everywhere else. This name is less specific, which is still better than a wrong name. To generate a diff of this commit: cvs rdiff -u -r1.842 -r1.843 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.