Skip to content

Commit a409ef3

Browse files
author
Dimitri van Heesch
authored
Merge pull request doxygen#646 from albert-github/feature/bug_792935
Bug 792935 - error: Could not open file .../doc/html/functions_ .html for writing
2 parents 68ff251 + 2609f6f commit a409ef3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/index.cpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1638,10 +1638,15 @@ static void writeAnnotatedClassList(OutputList &ol)
16381638
ol.endIndexList();
16391639
}
16401640

1641+
inline bool isId1(int c)
1642+
{
1643+
return (c<127 && c>31); // printable ASCII character
1644+
}
1645+
16411646
static QCString letterToLabel(uint startLetter)
16421647
{
16431648
char s[11]; // max 0x12345678 + '\0'
1644-
if (isId(startLetter)) // printable ASCII character
1649+
if (isId1(startLetter)) // printable ASCII character
16451650
{
16461651
s[0]=(char)startLetter;
16471652
s[1]=0;

0 commit comments

Comments
 (0)