diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2001-05-24 16:25:58 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2001-05-24 16:25:58 (GMT) |
commit | cd76bda7e377a14bd6b3d321425cf462a46a3f75 (patch) | |
tree | 8572e4828627ab6b9a6d55d425469176c0c02e0b /src/util.cpp | |
parent | 9b3aec9323189f25f4abb131b5a783fa110f45f6 (diff) | |
download | Doxygen-cd76bda7e377a14bd6b3d321425cf462a46a3f75.zip Doxygen-cd76bda7e377a14bd6b3d321425cf462a46a3f75.tar.gz Doxygen-cd76bda7e377a14bd6b3d321425cf462a46a3f75.tar.bz2 |
Release-1.2.7-20010524
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 42070d6..d7acf08 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -460,7 +460,7 @@ QCString removeRedundantWhiteSpace(const QCString &s) result+=' '; result+=s.at(i); } - else if (c!=' ' || + else if (!isspace(c) || ( i!=0 && i!=l-1 && (isId(s.at(i-1)) || s.at(i-1)==')' || s.at(i-1)==',' || s.at(i-1)=='>' || s.at(i-1)==']') && isId(s.at(i+1)) |