summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-02-10 13:27:25 (GMT)
committerGitHub <noreply@github.com>2018-02-10 13:27:25 (GMT)
commita409ef3f1f7a42b87b55f8cae63ad6aac06a3311 (patch)
tree6cb98196e53a77045e246e5b33835a50a8bcd702 /src
parent68ff251935d595d7e643c170dd5d8b43794b3297 (diff)
parent2609f6f49763fd75e5c529788795a07f6559b954 (diff)
downloadDoxygen-a409ef3f1f7a42b87b55f8cae63ad6aac06a3311.zip
Doxygen-a409ef3f1f7a42b87b55f8cae63ad6aac06a3311.tar.gz
Doxygen-a409ef3f1f7a42b87b55f8cae63ad6aac06a3311.tar.bz2
Merge pull request #646 from albert-github/feature/bug_792935
Bug 792935 - error: Could not open file .../doc/html/functions_ .html for writing
Diffstat (limited to 'src')
-rw-r--r--src/index.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/index.cpp b/src/index.cpp
index bfa4954..24c0290 100644
--- a/src/index.cpp
+++ b/src/index.cpp
@@ -1638,10 +1638,15 @@ static void writeAnnotatedClassList(OutputList &ol)
ol.endIndexList();
}
+inline bool isId1(int c)
+{
+ return (c<127 && c>31); // printable ASCII character
+}
+
static QCString letterToLabel(uint startLetter)
{
char s[11]; // max 0x12345678 + '\0'
- if (isId(startLetter)) // printable ASCII character
+ if (isId1(startLetter)) // printable ASCII character
{
s[0]=(char)startLetter;
s[1]=0;