diff options
Diffstat (limited to 'src/util/codes.rs')
-rw-r--r-- | src/util/codes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/codes.rs b/src/util/codes.rs index 8a46d02..9b6ad39 100644 --- a/src/util/codes.rs +++ b/src/util/codes.rs @@ -35,7 +35,7 @@ pub fn parse(value: &str) -> Vec<Code> { // Send a replacement character. '\0' => { column += 1; - codes.push(Code::Char('�')); + codes.push(Code::Char(char::REPLACEMENT_CHARACTER)); } // Send a tab and virtual spaces. '\t' => { |