comparison src/option.h @ 19526:22f0dda71638 v8.2.0320

patch 8.2.0320: no Haiku support Commit: https://github.com/vim/vim/commit/b3f740695a0199d22cd97aee314f06c7ae32d2ea Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 26 16:16:53 2020 +0100 patch 8.2.0320: no Haiku support Problem: No Haiku support. Solution: Add support for Haiku. (Emir Sari, closes https://github.com/vim/vim/issues/5605)
author Bram Moolenaar <Bram@vim.org>
date Wed, 26 Feb 2020 16:30:04 +0100
parents 2ef19eed524a
children 12518b40c161
comparison
equal deleted inserted replaced
19525:619eb9bc3249 19526:22f0dda71638
7 */ 7 */
8 8
9 /* 9 /*
10 * option.h: definition of global variables for settable options 10 * option.h: definition of global variables for settable options
11 */ 11 */
12
13 #ifndef _OPTION_H_
14 #define _OPTION_H_
12 15
13 // 16 //
14 // Flags 17 // Flags
15 // 18 //
16 #define P_BOOL 0x01 // the option is boolean 19 #define P_BOOL 0x01 // the option is boolean
1288 , WV_COUNT // must be the last one 1291 , WV_COUNT // must be the last one
1289 }; 1292 };
1290 1293
1291 // Value for b_p_ul indicating the global value must be used. 1294 // Value for b_p_ul indicating the global value must be used.
1292 #define NO_LOCAL_UNDOLEVEL -123456 1295 #define NO_LOCAL_UNDOLEVEL -123456
1296
1297 #endif // _OPTION_H_