diff options
author | Michael Reed <m.reed@mykolab.com> | 2016-01-14 16:05:23 -0500 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2016-01-14 23:38:26 -0500 |
commit | 07265d221fbd3b4fd16440caab49c70d14370079 (patch) | |
tree | 07118b6756dfe5c34204112c228bb72b7f83aa11 /src/nvim/option.c | |
parent | 24fbb2c866039d61107fa1f6a2efe86bb6951e55 (diff) | |
download | rneovim-07265d221fbd3b4fd16440caab49c70d14370079.tar.gz rneovim-07265d221fbd3b4fd16440caab49c70d14370079.tar.bz2 rneovim-07265d221fbd3b4fd16440caab49c70d14370079.zip |
Misc. macro cleanup
- ROOT_UID's comment is misleading, as it's always defined to 0.
- SEEK_{SET,END} & O_NOFOLLOW should already be defined on Unix-like
systems in <stdio.h> and <fcntl.h>, respectively. In any case,
neither of those #ifdef blocks should be in the middle of source files.
- The S_IS{LNK,DIR,...} macros should only be undefined on Windows.
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 2ac1abeeba..e3df559c49 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -837,9 +837,10 @@ set_option_default ( } else { /* P_BOOL */ *(int *)varp = (int)(intptr_t)options[opt_idx].def_val[dvi]; #ifdef UNIX - /* 'modeline' defaults to off for root */ - if (options[opt_idx].indir == PV_ML && getuid() == ROOT_UID) - *(int *)varp = FALSE; + // 'modeline' defaults to off for root + if (options[opt_idx].indir == PV_ML && getuid() == 0) { + *(int *)varp = false; + } #endif /* May also set global value for local option. */ if (both) |