diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-26 16:16:53 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-26 16:16:53 +0100 |
commit | b3f740695a0199d22cd97aee314f06c7ae32d2ea (patch) | |
tree | 8221662bb578d80a7a044f8a20aef09394a5a1a8 /src/option.h | |
parent | d672dde584effd55702ee15efec4cb2a8c77bf85 (diff) | |
download | vim-git-b3f740695a0199d22cd97aee314f06c7ae32d2ea.tar.gz |
patch 8.2.0320: no Haiku supportv8.2.0320
Problem: No Haiku support.
Solution: Add support for Haiku. (Emir Sari, closes #5605)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index 8b04d18f3..47eb15125 100644 --- a/src/option.h +++ b/src/option.h @@ -10,6 +10,9 @@ * option.h: definition of global variables for settable options */ +#ifndef _OPTION_H_ +#define _OPTION_H_ + // // Flags // @@ -1290,3 +1293,5 @@ enum // Value for b_p_ul indicating the global value must be used. #define NO_LOCAL_UNDOLEVEL -123456 + +#endif // _OPTION_H_ |