Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/blahtexml
diff options
context:
space:
mode:
authorChris Ball <cjb@laptop.org>2008-05-28 02:38:11 (GMT)
committer Chris Ball <cjb@laptop.org>2008-05-28 02:38:11 (GMT)
commitd8b0f0464bd30e3a0fbe343db1ff98729bd6c490 (patch)
tree40a75abe4ec690e9c9ff4e7c0653814e9b2db2c7 /blahtexml
parent833eceb890add1adee101662493ca24b70336386 (diff)
Trac #7097: switch to a supported codepoint for langle/rangle.
Diffstat (limited to 'blahtexml')
-rw-r--r--blahtexml/InputSymbolTranslation.tex4
-rw-r--r--blahtexml/source/BlahtexCore/InputSymbolTranslation.inc4
-rw-r--r--blahtexml/source/BlahtexCore/InputSymbolTranslation.xml4
-rw-r--r--blahtexml/source/BlahtexCore/LayoutTree.cpp4
-rw-r--r--blahtexml/source/BlahtexCore/ParseTree1.cpp8
-rw-r--r--blahtexml/source/BlahtexCore/ParseTree2.cpp4
-rw-r--r--blahtexml/source/BlahtexCore/XmlEncode.cpp4
7 files changed, 16 insertions, 16 deletions
diff --git a/blahtexml/InputSymbolTranslation.tex b/blahtexml/InputSymbolTranslation.tex
index 4595f7f..95a3244 100644
--- a/blahtexml/InputSymbolTranslation.tex
+++ b/blahtexml/InputSymbolTranslation.tex
@@ -577,9 +577,9 @@ $\frown$ & \texttt{00002322} & \verb|\frown| \\
\hline
$\smile$ & \texttt{00002323} & \verb|\smile| \\
\hline
-$\langle$ & \texttt{00002329} & \verb|\langle| \\
+$\langle$ & \texttt{000027E8} & \verb|\langle| \\
\hline
-$\rangle$ & \texttt{0000232A} & \verb|\rangle| \\
+$\rangle$ & \texttt{000027E9} & \verb|\rangle| \\
\hline
$\square$ & \texttt{000025A1} & \verb|\square| \\
\hline
diff --git a/blahtexml/source/BlahtexCore/InputSymbolTranslation.inc b/blahtexml/source/BlahtexCore/InputSymbolTranslation.inc
index c16a004..f15fe11 100644
--- a/blahtexml/source/BlahtexCore/InputSymbolTranslation.inc
+++ b/blahtexml/source/BlahtexCore/InputSymbolTranslation.inc
@@ -285,8 +285,8 @@
make_pair(L'\U0000231F', L"\\lrcorner"),
make_pair(L'\U00002322', L"\\frown"),
make_pair(L'\U00002323', L"\\smile"),
- make_pair(L'\U00002329', L"\\langle"),
- make_pair(L'\U0000232A', L"\\rangle"),
+ make_pair(L'\U000027E8', L"\\langle"),
+ make_pair(L'\U000027E9', L"\\rangle"),
make_pair(L'\U000025A1', L"\\square"),
make_pair(L'\U000025B3', L"\\triangle"),
make_pair(L'\U000025B4', L"\\blacktriangle"),
diff --git a/blahtexml/source/BlahtexCore/InputSymbolTranslation.xml b/blahtexml/source/BlahtexCore/InputSymbolTranslation.xml
index 6ee7ebf..4f460ea 100644
--- a/blahtexml/source/BlahtexCore/InputSymbolTranslation.xml
+++ b/blahtexml/source/BlahtexCore/InputSymbolTranslation.xml
@@ -307,8 +307,8 @@
<symbol unicode="0000231F" tex="\lrcorner"/>
<symbol unicode="00002322" tex="\frown"/>
<symbol unicode="00002323" tex="\smile"/>
- <symbol unicode="00002329" tex="\langle"/>
- <symbol unicode="0000232A" tex="\rangle"/>
+ <symbol unicode="000027E8" tex="\langle"/>
+ <symbol unicode="000027E9" tex="\rangle"/>
<symbol unicode="000025A1" tex="\square"/>
<symbol unicode="000025B3" tex="\triangle"/>
<symbol unicode="000025B4" tex="\blacktriangle"/>
diff --git a/blahtexml/source/BlahtexCore/LayoutTree.cpp b/blahtexml/source/BlahtexCore/LayoutTree.cpp
index 77a15c0..bec6cdf 100644
--- a/blahtexml/source/BlahtexCore/LayoutTree.cpp
+++ b/blahtexml/source/BlahtexCore/LayoutTree.cpp
@@ -666,8 +666,8 @@ auto_ptr<MathmlNode> SymbolOperator::BuildMathmlTree(
L'\U000002C7', // Hacek
L'\U000002D8', // Breve
L'\U00002216', // Backslash
- L'\U00002329', // LeftAngleBracket
- L'\U0000232A', // RightAngleBracket
+ L'\U000027E8', // LeftAngleBracket
+ L'\U000027E9', // RightAngleBracket
L'\U00002308', // LeftCeiling
L'\U00002309', // RightCeiling
L'\U0000230A', // LeftFloor
diff --git a/blahtexml/source/BlahtexCore/ParseTree1.cpp b/blahtexml/source/BlahtexCore/ParseTree1.cpp
index 788ca31..4912b38 100644
--- a/blahtexml/source/BlahtexCore/ParseTree1.cpp
+++ b/blahtexml/source/BlahtexCore/ParseTree1.cpp
@@ -38,10 +38,10 @@ static pair<wstring, wstring> gDelimiterArray[] =
make_pair(L"\\rbrack", L"]"),
make_pair(L"(", L"("),
make_pair(L")", L")"),
- make_pair(L"<", L"\U00002329"),
- make_pair(L">", L"\U0000232A"),
- make_pair(L"\\langle", L"\U00002329"),
- make_pair(L"\\rangle", L"\U0000232A"),
+ make_pair(L"<", L"\U000027E8"),
+ make_pair(L">", L"\U000027E9"),
+ make_pair(L"\\langle", L"\U000027E8"),
+ make_pair(L"\\rangle", L"\U000027E9"),
make_pair(L"/", L"/"),
make_pair(L"\\backslash", L"\U00002216"),
make_pair(L"\\{", L"{"),
diff --git a/blahtexml/source/BlahtexCore/ParseTree2.cpp b/blahtexml/source/BlahtexCore/ParseTree2.cpp
index 41523c2..45231a9 100644
--- a/blahtexml/source/BlahtexCore/ParseTree2.cpp
+++ b/blahtexml/source/BlahtexCore/ParseTree2.cpp
@@ -168,8 +168,8 @@ pair<wstring, OperatorInfo> operatorArray[] =
make_pair(L"\\rfloor", OperatorInfo(L"\U0000230B", LayoutTree::Node::cFlavourClose)),
make_pair(L"\\lceil", OperatorInfo(L"\U00002308", LayoutTree::Node::cFlavourOpen)),
make_pair(L"\\rceil", OperatorInfo(L"\U00002309", LayoutTree::Node::cFlavourClose)),
- make_pair(L"\\langle", OperatorInfo(L"\U00002329", LayoutTree::Node::cFlavourOpen)),
- make_pair(L"\\rangle", OperatorInfo(L"\U0000232A", LayoutTree::Node::cFlavourClose)),
+ make_pair(L"\\langle", OperatorInfo(L"\U000027E8", LayoutTree::Node::cFlavourOpen)),
+ make_pair(L"\\rangle", OperatorInfo(L"\U000027E9", LayoutTree::Node::cFlavourClose)),
make_pair(L"\\forall", OperatorInfo(L"\U00002200", LayoutTree::Node::cFlavourOrd)),
make_pair(L"\\exists", OperatorInfo(L"\U00002203", LayoutTree::Node::cFlavourOrd)),
make_pair(L"\\leftarrow", OperatorInfo(L"\U00002190", LayoutTree::Node::cFlavourRel)),
diff --git a/blahtexml/source/BlahtexCore/XmlEncode.cpp b/blahtexml/source/BlahtexCore/XmlEncode.cpp
index 5a2beff..f875c21 100644
--- a/blahtexml/source/BlahtexCore/XmlEncode.cpp
+++ b/blahtexml/source/BlahtexCore/XmlEncode.cpp
@@ -404,8 +404,8 @@ pair<wchar_t, UnicodeNameInfo> gUnicodeNameArray[] =
make_pair(L'\U0000231F', UnicodeNameInfo(L"drcorn", L"lrcorner")),
make_pair(L'\U00002322', UnicodeNameInfo(L"frown", L"sfrown")),
make_pair(L'\U00002323', UnicodeNameInfo(L"smile", L"ssmile")),
- make_pair(L'\U00002329', UnicodeNameInfo(L"lang", L"LeftAngleBracket")),
- make_pair(L'\U0000232A', UnicodeNameInfo(L"rang", L"RightAngleBracket")),
+ make_pair(L'\U000027E8', UnicodeNameInfo(L"lang", L"LeftAngleBracket")),
+ make_pair(L'\U000027E9', UnicodeNameInfo(L"rang", L"RightAngleBracket")),
make_pair(L'\U000023B5', UnicodeNameInfo(L"bbrk", L"UnderBracket")),
make_pair(L'\U000024C8', UnicodeNameInfo(L"oS", L"circledS")),
make_pair(L'\U000025A1', UnicodeNameInfo(L"squ", L"Square")),