mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-01 08:09:41 +02:00
Multi-line Nyquist header directives allow embedded comments
This commit is contained in:
parent
b92e334873
commit
6f52df545e
@ -1640,6 +1640,12 @@ bool NyquistEffect::Tokenizer::Tokenize(
|
||||
// Unenclosed whitespace
|
||||
// Separate tokens; don't accumulate this character
|
||||
endToken();
|
||||
else if (!q && c == wxT(';'))
|
||||
// semicolon not in quotes, but maybe in parentheses
|
||||
// Lisp style comments with ; (but not with #| ... |#) are allowed
|
||||
// within a wrapped header multi-line, so that i18n hint comments may
|
||||
// be placed before strings and found by xgettext
|
||||
break;
|
||||
else if (!q && c == wxT('(')) {
|
||||
// Start of list or sublist
|
||||
if (++paren == 1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user