summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-05-01 23:18:38 -0400
committeryenatch <yenatch@gmail.com>2013-05-01 23:18:38 -0400
commit2acb46f6b58156ee3380a6203070ef2096db4b84 (patch)
tree1e19992cb2d34dd501dd617c8d9f564968aee029
parente46e8a3023661880333a2781cbd4611d436da405 (diff)
downward triangle character 0xee
-rw-r--r--extras/chars.py1
-rw-r--r--preprocessor.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/extras/chars.py b/extras/chars.py
index 159a479a7..1bc25dbe7 100644
--- a/extras/chars.py
+++ b/extras/chars.py
@@ -99,6 +99,7 @@ chars = {
0xEA: "é",
0xEB: "→",
0xED: "▶",
+ 0xEE: "▼",
0xEF: "♂",
0xF0: "¥",
0xF1: "×",
diff --git a/preprocessor.py b/preprocessor.py
index c53612517..48906da5e 100644
--- a/preprocessor.py
+++ b/preprocessor.py
@@ -287,6 +287,7 @@ chars = {
"é": 0xEA,
"→": 0xEB,
"▶": 0xED,
+"▼": 0xEE,
"♂": 0xEF,
"¥": 0xF0,
"×": 0xF1,