Change --preproc-comments to be new name of --pp-comments option.

This commit is contained in:
Wilson Snyder
2025-11-01 21:59:16 -04:00
parent e6cdaf112c
commit d4aa00dbeb
8 changed files with 17 additions and 9 deletions
+1 -1
View File
@@ -444,7 +444,7 @@ bool V3PreProcImp::commentTokenMatch(string& cmdr, const char* strg) {
void V3PreProcImp::comment(const string& text) {
// Comment detected. Only keep relevant data.
bool printed = false;
if (v3Global.opt.preprocOnly() && v3Global.opt.ppComments()) {
if (v3Global.opt.preprocOnly() && v3Global.opt.preprocComments()) {
insertUnreadback(text);
printed = true;
}