Source-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: src/usr.bin/make
Module Name: src
Committed By: rillig
Date: Sun Aug 2 10:47:09 UTC 2020
Modified Files:
src/usr.bin/make: var.c
Log Message:
make(1): eliminate local variable in ParseModifierPart
The evaluation flags passed to the nested variables consist of 3 flags.
Therefore, (eflags & VARE_UNDEFERR) | (eflags & VARE_WANTRES) is
equivalent to (eflags & ~VARE_ASSIGN).
The variable name errnum was misleading anyway, just like the other
errnum from a few commits ago that had been renamed to errfmt.
To generate a diff of this commit:
cvs rdiff -u -r1.394 -r1.395 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.
Home |
Main Index |
Thread Index |
Old Index