diff options
Diffstat (limited to 'src/option_defs.h')
-rw-r--r-- | src/option_defs.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/option_defs.h b/src/option_defs.h index 19eb06e337..5179cdf2eb 100644 --- a/src/option_defs.h +++ b/src/option_defs.h @@ -1,10 +1,5 @@ -/* vi:set ts=8 sts=4 sw=4: - * - * VIM - Vi IMproved by Bram Moolenaar - * - * Do ":help uganda" in Vim to read copying and usage conditions. - * Do ":help credits" in Vim to see a list of people who contributed. - */ +#ifndef NEOVIM_OPTION_DEFS_H +#define NEOVIM_OPTION_DEFS_H #include "types.h" @@ -766,3 +761,5 @@ enum { /* Value for b_p_ul indicating the global value must be used. */ #define NO_LOCAL_UNDOLEVEL -123456 + +#endif // NEOVIM_OPTION_DEFS_H |