summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-12-29 10:00:03 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-12-29 10:00:03 (GMT)
commitc03dd8a0105a6d020983981d17b1429dd4835103 (patch)
tree794896021236d408b433dd0e59a1793619f8df4d /src
parentaf6bf4883affe57d3be48e4b4538eb3c47decfad (diff)
downloadDoxygen-c03dd8a0105a6d020983981d17b1429dd4835103.zip
Doxygen-c03dd8a0105a6d020983981d17b1429dd4835103.tar.gz
Doxygen-c03dd8a0105a6d020983981d17b1429dd4835103.tar.bz2
issue #8282 Error on ALIAS declaration without quotes
- also escape a "," (comma) when writing out string values (doxygen and doxywizard) - check on empty lists in stringlist for the wizard
Diffstat (limited to 'src')
-rw-r--r--src/configimpl.l2
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 << "\"";