diff options
Diffstat (limited to 'src/auxiliary')
-rw-r--r-- | src/auxiliary/functions.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/auxiliary/functions.cc b/src/auxiliary/functions.cc index 5dbc012..668c108 100644 --- a/src/auxiliary/functions.cc +++ b/src/auxiliary/functions.cc @@ -159,6 +159,8 @@ void to_label(std::string &text) pos++; } else if ((text[pos] >= '0') && (text[pos] <= '9')) { pos++; + } else if (text[pos] == '/') { + pos++; } else { text.erase(pos, 1); } |