forked from pool/doxygen
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
--- src/util.cpp.orig 2010-06-15 15:51:48.000000000 +0200
|
Index: src/util.cpp
|
||||||
+++ src/util.cpp 2010-06-15 15:52:27.000000000 +0200
|
===================================================================
|
||||||
@@ -4794,9 +4794,9 @@
|
--- src/util.cpp.orig
|
||||||
|
+++ src/util.cpp
|
||||||
|
@@ -4807,9 +4807,9 @@ QCString escapeCharsInString(const char
|
||||||
static bool caseSenseNames = Config_getBool("CASE_SENSE_NAMES");
|
static bool caseSenseNames = Config_getBool("CASE_SENSE_NAMES");
|
||||||
static StrBuf strBuf;
|
static StrBuf strBuf;
|
||||||
strBuf.clear();
|
strBuf.clear();
|
||||||
@@ -12,9 +14,9 @@
|
|||||||
{
|
{
|
||||||
switch(c)
|
switch(c)
|
||||||
{
|
{
|
||||||
@@ -4823,11 +4823,11 @@
|
@@ -4837,11 +4837,11 @@ QCString escapeCharsInString(const char
|
||||||
case '+': strBuf.addStr("_09"); break;
|
|
||||||
case '=': strBuf.addStr("_0A"); break;
|
case '=': strBuf.addStr("_0A"); break;
|
||||||
|
case '$': strBuf.addStr("_0B"); break;
|
||||||
default:
|
default:
|
||||||
- if (c<0)
|
- if (c<0)
|
||||||
+ if (c>0x7f)
|
+ if (c>0x7f)
|
||||||
|
Reference in New Issue
Block a user