Skip to content

Commit 1bcdbda

Browse files
committed
Merge branch 'master' of github.com:doxygen/doxygen
2 parents 98aca21 + da5005d commit 1bcdbda

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

doc/install.dox

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ tools should be installed.
6666
<a href="https://www.ghostscript.com/">www.ghostscript.com</a>.
6767
</ul>
6868

69+
For testing at least these additional dependencies should be available:
70+
<ul>
71+
<li>xmllint (libxml2-ultils)</li>
72+
<li>bibtex (texlive-binaries)</li>
73+
</ul>
74+
6975
Compilation is now done by performing the following steps:
7076

7177
<ol>

src/caseconvert.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def writePunctuationCodes(file):
4747
{
4848
''')
4949
writeMapping(file,toupper)
50-
file.write(r''' default: return nullptr
50+
file.write(r''' default: return nullptr;
5151
}
5252
}
5353
@@ -57,7 +57,7 @@ def writePunctuationCodes(file):
5757
{
5858
''')
5959
writeMapping(file,tolower)
60-
file.write(r''' default: return nullptr
60+
file.write(r''' default: return nullptr;
6161
}
6262
}
6363
@@ -67,9 +67,9 @@ def writePunctuationCodes(file):
6767
{
6868
''')
6969
writePunctuationCodes(file)
70-
file.write(r''' default: return false
70+
file.write(r''' default: return false;
7171
}
72-
return false
72+
return false;
7373
}
7474
7575
#endif

0 commit comments

Comments
 (0)