diff options
author | Christian Duerr <contact@christianduerr.com> | 2017-12-06 23:55:49 +0100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-12-24 09:46:54 -0800 |
commit | 9f708146d989f601bd4cc5b253cd58db02ce41d3 (patch) | |
tree | 033447053e59ed83578cf3bf4ec6bb9565751aac /font/src/lib.rs | |
parent | 5177e42bca3a1a3c86a9b1a8d369d0bd220cf504 (diff) | |
download | alacritty-9f708146d989f601bd4cc5b253cd58db02ce41d3.tar.gz alacritty-9f708146d989f601bd4cc5b253cd58db02ce41d3.zip |
Specify unicode code point explicitly
Diffstat (limited to 'font/src/lib.rs')
-rw-r--r-- | font/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font/src/lib.rs b/font/src/lib.rs index 2079d04b..5d35e47a 100644 --- a/font/src/lib.rs +++ b/font/src/lib.rs @@ -61,7 +61,7 @@ pub use darwin::*; /// Character used for the underline cursor #[cfg(not(target_os = "macos"))] // This is part of the private use area and should not conflict with any font -pub const UNDERLINE_CURSOR_CHAR: char = ''; +pub const UNDERLINE_CURSOR_CHAR: char = '\u{10a3e2}'; #[cfg(target_os = "macos")] pub const UNDERLINE_CURSOR_CHAR: char = '▁'; |