diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-12-13 00:24:44 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-12-13 00:24:44 -0500 |
commit | 28821397f646f015103e13bbf3dd8ccb555866c3 (patch) | |
tree | 8b381c8147bb82b8f0e53d24e7b070b489c462f6 | |
parent | 1b6e7f9e39077b16626460b385734d2ef804b20c (diff) | |
parent | a9b4cedb0816729c2e6bbad433dd72598b68e129 (diff) | |
download | rneovim-28821397f646f015103e13bbf3dd8ccb555866c3.tar.gz rneovim-28821397f646f015103e13bbf3dd8ccb555866c3.tar.bz2 rneovim-28821397f646f015103e13bbf3dd8ccb555866c3.zip |
Merge pull request #3836 from sethjackson/set-init-3
Windows: Remove broken check for WIN3264
-rw-r--r-- | src/nvim/option.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index da74c0f288..486f2083a6 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -1019,12 +1019,9 @@ void set_init_2(void) */ void set_init_3(void) { -#if defined(UNIX) || defined(WIN3264) - /* - * Set 'shellpipe' and 'shellredir', depending on the 'shell' option. - * This is done after other initializations, where 'shell' might have been - * set, but only if they have not been set before. - */ + // Set 'shellpipe' and 'shellredir', depending on the 'shell' option. + // This is done after other initializations, where 'shell' might have been + // set, but only if they have not been set before. int idx_srr; int do_srr; int idx_sp; @@ -1081,8 +1078,6 @@ void set_init_3(void) } xfree(p); } -#endif - set_title_defaults(); } |