Add missing # back to test output

This commit is contained in:
Ivan Tham 2022-03-10 23:14:19 +08:00 committed by Blaž Hrastnik
parent 8b91ecde40
commit ec21de0844

View File

@ -45,6 +45,7 @@ pub fn print(s: &str) -> (String, Selection) {
Some('[') => (true, ']'),
Some('(') => (false, ')'),
Some(ch) => {
left.push('#');
left.push(ch);
continue;
}