From 9f708146d989f601bd4cc5b253cd58db02ce41d3 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Wed, 6 Dec 2017 23:55:49 +0100 Subject: [PATCH] Specify unicode code point explicitly --- font/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/font/src/lib.rs b/font/src/lib.rs index 2079d04..5d35e47 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 = '▁';