diff options
author | Niklas Claesson <nicke.claesson@gmail.com> | 2017-01-25 00:19:45 +0100 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-01-28 12:25:57 -0800 |
commit | 019daa8b69b2e3b402362b71eeb3c8408c2ab933 (patch) | |
tree | 083a05743781e19003bddf9f429923decfa78491 /src/main.rs | |
parent | 08f348ecea0b782cd8539850abe6309d0e5b06c9 (diff) | |
download | alacritty-019daa8b69b2e3b402362b71eeb3c8408c2ab933.tar.gz alacritty-019daa8b69b2e3b402362b71eeb3c8408c2ab933.zip |
Add support for -e argument
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 dd511cce..e51875a6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -103,7 +103,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(&config, display.size()); + let mut pty = tty::new(&config, &options, display.size()); // Create the pseudoterminal I/O loop // |