diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-12-30 09:01:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-30 09:01:50 (GMT) |
commit | 5ddbe23ccbdd0244b816adca2d9dc3fb5c26cea6 (patch) | |
tree | 801b22083d7b4248439f598c607773dc7f83773e /src | |
parent | 4008be91ff3a2b5defb8a54af5edf15b4ca99c0e (diff) | |
parent | c03dd8a0105a6d020983981d17b1429dd4835103 (diff) | |
download | Doxygen-5ddbe23ccbdd0244b816adca2d9dc3fb5c26cea6.zip Doxygen-5ddbe23ccbdd0244b816adca2d9dc3fb5c26cea6.tar.gz Doxygen-5ddbe23ccbdd0244b816adca2d9dc3fb5c26cea6.tar.bz2 |
Merge pull request #8284 from albert-github/feature/issue_8282
issue #8282 Error on ALIAS declaration without quotes
Diffstat (limited to 'src')
-rw-r--r-- | src/configimpl.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configimpl.l b/src/configimpl.l index e2ef8eb..17e56b3 100644 --- a/src/configimpl.l +++ b/src/configimpl.l @@ -153,7 +153,7 @@ void ConfigOption::writeStringValue(FTextStream &t,const QCString &s) { t << " "; while ((c=*p++)!=0 && !needsEscaping) - needsEscaping = (c==' ' || c=='\n' || c=='\t' || c=='"' || c=='#'); + needsEscaping = (c==' ' || c== ',' || c=='\n' || c=='\t' || c=='"' || c=='#'); if (needsEscaping) { t << "\""; |