aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorJoe Wilm <jwilm@users.noreply.github.com>2017-01-07 09:46:28 -0800
committerGitHub <noreply@github.com>2017-01-07 09:46:28 -0800
commit56773fe7e7cdc999a6731934286858e763f96fda (patch)
tree5dbd83068a3106b00c7122de5674c5a03b4cfcf3 /src/main.rs
parentc6959de11b735c1610973ee625f52ff7e892abcc (diff)
parent962dd61348d788fa48a6554ff8a079537d67fc0a (diff)
downloadalacritty-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.rs2
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
//