aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Jackson <sethjackson@gmail.com>2015-12-12 22:51:14 -0500
committerSeth Jackson <sethjackson@gmail.com>2015-12-12 23:30:43 -0500
commita9b4cedb0816729c2e6bbad433dd72598b68e129 (patch)
treef319fecb70be69a001c1b41f4801b979fc694c08
parentf183cc14de40542899f1bad44943695b0ccf0e5c (diff)
downloadrneovim-a9b4cedb0816729c2e6bbad433dd72598b68e129.tar.gz
rneovim-a9b4cedb0816729c2e6bbad433dd72598b68e129.tar.bz2
rneovim-a9b4cedb0816729c2e6bbad433dd72598b68e129.zip
Windows: Remove broken check for WIN3264.
We do not define WIN3264 so this check was broken. Futher since UNIX is defined on all Unix platforms we support we can simply remove this #ifdef.
-rw-r--r--src/nvim/option.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index dbcd230186..f1a8db0d98 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -1018,12 +1018,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;
@@ -1080,8 +1077,6 @@ void set_init_3(void)
}
xfree(p);
}
-#endif
-
set_title_defaults();
}