summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index f19f5d6..df95ede 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -1278,7 +1278,7 @@ void HtmlCodeGenerator::codify(const char *str)
m_t << "\\";
m_col++;
break;
- default: m_t << c;
+ default: p=writeUtf8Char(m_t,p-1);
m_col++;
break;
}
@@ -1403,11 +1403,6 @@ void HtmlCodeGenerator::writeCodeAnchor(const char *anchor)
if (m_streamSet) m_t << "<a name=\"" << anchor << "\"></a>";
}
-void HtmlCodeGenerator::linkableSymbol(int,const char *,Definition *,Definition *)
-{
-}
-
-
//--------------------------------------------------------------------------
HtmlGenerator::HtmlGenerator() : OutputGenerator()