Skip to content

Commit

Permalink
Fix uppercase letters B-Z being unnecessarily escaped in index HTML a…
Browse files Browse the repository at this point in the history
…nchors.
  • Loading branch information
c-lipka committed Apr 13, 2016
1 parent 930fb89 commit 0f699ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/htmldocvisitor.cpp
Expand Up @@ -50,7 +50,7 @@ static QCString convertIndexWordToAnchor(const QString &word)
while ((c = *str++))
{
if ((c >= 'a' && c <= 'z') || // ALPHA
(c >= 'A' && c <= 'A') || // ALPHA
(c >= 'A' && c <= 'Z') || // ALPHA
(c >= '0' && c <= '9') || // DIGIT
c == '-' ||
c == '.' ||
Expand Down

0 comments on commit 0f699ab

Please sign in to comment.