diff options
author | Casper Rogild Storm <2248455+casperstorm@users.noreply.github.com> | 2020-04-30 20:04:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 18:04:02 +0000 |
commit | 7901b454ee04c7873e611986ed2dbe5c3d6331eb (patch) | |
tree | e1085407c343f07346a56999ea50e81eb4ebf9a3 /alacritty_terminal/src/lib.rs | |
parent | f4689a1c362f851e37b0f9a2fa32fe0f5e9ef3b8 (diff) | |
download | alacritty-7901b454ee04c7873e611986ed2dbe5c3d6331eb.tar.gz alacritty-7901b454ee04c7873e611986ed2dbe5c3d6331eb.zip |
Fix startup locale on macOS
Fixes #2800.
Fixes #2566.
Diffstat (limited to 'alacritty_terminal/src/lib.rs')
-rw-r--r-- | alacritty_terminal/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/alacritty_terminal/src/lib.rs b/alacritty_terminal/src/lib.rs index 6991ffdc..1bf35389 100644 --- a/alacritty_terminal/src/lib.rs +++ b/alacritty_terminal/src/lib.rs @@ -28,6 +28,7 @@ pub mod event; pub mod event_loop; pub mod grid; pub mod index; +#[cfg(target_os = "macos")] pub mod locale; pub mod message_bar; pub mod meter; |