SHA256
1
0
forked from pool/doxygen
doxygen/doxygen-1.7.0-warnings.patch
Petr Gajdos 1a8df8c24a - updated to 1.8.0:
* Auto list items can now consist of multiple paragraphs.
  * When UML_LOOK is enabled, relations shown on the edge of a 
    graph are not shown as attributes.
  * Updated the manual and improved the look.
  * Latex: made the margins of latex page layout smaller using the 
    geometry package.
  * etc., see http://www.stack.nl/~dimitri/doxygen/changelog.html

- updated to 1.8.0:
  * Auto list items can now consist of multiple paragraphs.
  * When UML_LOOK is enabled, relations shown on the edge of a 
    graph are not shown as attributes.
  * Updated the manual and improved the look.
  * Latex: made the margins of latex page layout smaller using the 
    geometry package.
  * etc., see http://www.stack.nl/~dimitri/doxygen/changelog.html

OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=45
2012-02-27 09:54:11 +00:00

14 lines
480 B
Diff

Index: src/util.cpp
===================================================================
--- src/util.cpp.orig
+++ src/util.cpp
@@ -4834,7 +4834,7 @@ QCString escapeCharsInString(const char
case '=': growBuf.addStr("_0A"); break;
case '$': growBuf.addStr("_0B"); break;
default:
- if (c<0)
+ if ((unsigned char)c>0x7f)
{
static char map[] = "0123456789ABCDEF";
char ids[5];