summaryrefslogtreecommitdiff
path: root/appl/lib/parseman.b
diff options
context:
space:
mode:
Diffstat (limited to 'appl/lib/parseman.b')
-rw-r--r--appl/lib/parseman.b4
1 files changed, 2 insertions, 2 deletions
diff --git a/appl/lib/parseman.b b/appl/lib/parseman.b
index bf420763..0f4151e9 100644
--- a/appl/lib/parseman.b
+++ b/appl/lib/parseman.b
@@ -443,11 +443,11 @@ parsetext[T](state: ref ParseState[T], t: string): list of Text
case t[i] {
'-' or '.' or '\\' =>
ch = t[i];
- ' ' =>
+ ' ' or '0' =>
ch = ' ';
'e' =>
ch = '\\';
- '|' or '&' =>
+ '|' or '&' or '^' =>
continue;
'(' =>
if (width > 3)