SHA256
8
0
forked from pool/doxygen

- 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
This commit is contained in:
2012-02-27 09:54:11 +00:00
committed by Git OBS Bridge
parent 2f9f0a17f8
commit 1a8df8c24a
11 changed files with 41 additions and 35 deletions

View File

@@ -2,29 +2,12 @@ Index: src/util.cpp
===================================================================
--- src/util.cpp.orig
+++ src/util.cpp
@@ -4807,9 +4807,9 @@ QCString escapeCharsInString(const char
static bool caseSenseNames = Config_getBool("CASE_SENSE_NAMES");
static StrBuf strBuf;
strBuf.clear();
- char c;
+ unsigned char c;
const char *p=name;
- while ((c=*p++)!=0)
+ while ((c=(unsigned char)*p++)!=0)
{
switch(c)
{
@@ -4837,11 +4837,11 @@ QCString escapeCharsInString(const char
case '=': strBuf.addStr("_0A"); break;
case '$': strBuf.addStr("_0B"); break;
@@ -4834,7 +4834,7 @@ QCString escapeCharsInString(const char
case '=': growBuf.addStr("_0A"); break;
case '$': growBuf.addStr("_0B"); break;
default:
- if (c<0)
+ if (c>0x7f)
+ if ((unsigned char)c>0x7f)
{
static char map[] = "0123456789ABCDEF";
char ids[5];
- unsigned char id = (unsigned char)c;
+ unsigned char id = c;
ids[0]='_';
ids[1]='x';
ids[2]=map[id>>4];