summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2014-02-12 18:10:11 (GMT)
committeralbert-github <albert.tests@gmail.com>2014-02-12 18:10:11 (GMT)
commit04a8ce9a8e2f022c21a5728ffdfb029258fa54e9 (patch)
tree70a02a83875f3caa0a6fbebaf52c5390ac341905 /src
parentcc78b12b0019fbcb17692b231d38ba75d0952201 (diff)
downloadDoxygen-04a8ce9a8e2f022c21a5728ffdfb029258fa54e9.zip
Doxygen-04a8ce9a8e2f022c21a5728ffdfb029258fa54e9.tar.gz
Doxygen-04a8ce9a8e2f022c21a5728ffdfb029258fa54e9.tar.bz2
Command \< and \> are not properly shown in section headers (and consequently in index)
In the pdf version of the doxygen manual (version 1.8.6) the commands \< and \> are shown as < and > Tests (on the doxygen manual) revealed that the exception rules were nor required.
Diffstat (limited to 'src')
-rw-r--r--src/util.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/util.cpp b/src/util.cpp
index cf2d6b9..136ee80 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -6413,14 +6413,9 @@ void filterLatexString(FTextStream &t,const char *str,
break;
case '-': t << "-\\/";
break;
- case '\\': if (*p=='<')
- { t << "$<$"; p++; }
- else if (*p=='>')
- { t << "$>$"; p++; }
- else
- { t << "\\textbackslash{}"; }
+ case '\\': t << "\\textbackslash{}";
break;
- case '"': { t << "\\char`\\\"{}"; }
+ case '"': t << "\\char`\\\"{}";
break;
default: