diff options
author | Joe Wilm <jwilm@users.noreply.github.com> | 2017-01-07 09:46:28 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-07 09:46:28 -0800 |
commit | 56773fe7e7cdc999a6731934286858e763f96fda (patch) | |
tree | 5dbd83068a3106b00c7122de5674c5a03b4cfcf3 /src/main.rs | |
parent | c6959de11b735c1610973ee625f52ff7e892abcc (diff) | |
parent | 962dd61348d788fa48a6554ff8a079537d67fc0a (diff) | |
download | alacritty-56773fe7e7cdc999a6731934286858e763f96fda.tar.gz alacritty-56773fe7e7cdc999a6731934286858e763f96fda.zip |
Merge pull request #138 from honza/master
Add "shell" option to config
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index f6ccc966..fb305e7c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -93,7 +93,7 @@ fn run(mut config: Config, options: cli::Options) -> Result<(), Box<Error>> { // The pty forks a process to run the shell on the slave side of the // pseudoterminal. A file descriptor for the master side is retained for // reading/writing to the shell. - let mut pty = tty::new(display.size()); + let mut pty = tty::new(&config, display.size()); // Create the pseudoterminal I/O loop // |