comparison src/optiondefs.h @ 31804:50555279168b

patch 9.0.1234: the code style has to be checked manually Commit: https://github.com/vim/vim/commit/ebfec1c531f32d424bb2aca6e7391ef3bfcbfe20 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 22 21:14:53 2023 +0000 patch 9.0.1234: the code style has to be checked manually Problem: The code style has to be checked manually. Solution: Add basic code style checks in a test. Fix or avoid uncovered problems.
author Bram Moolenaar <Bram@vim.org>
date Sun, 22 Jan 2023 22:15:04 +0100
parents 9dc48932db8e
children ca6bc7c04163
comparison
equal deleted inserted replaced
31803:7a9569aecc51 31804:50555279168b
2847 {"xtermcodes", NULL, P_BOOL|P_VI_DEF, 2847 {"xtermcodes", NULL, P_BOOL|P_VI_DEF,
2848 (char_u *)&p_xtermcodes, PV_NONE, 2848 (char_u *)&p_xtermcodes, PV_NONE,
2849 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, 2849 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT},
2850 2850
2851 // terminal output codes 2851 // terminal output codes
2852 #define p_term(sss, vvv) {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \ 2852 #define p_term(sss, vvv) \
2853 {sss, NULL, P_STRING|P_VI_DEF|P_RALL|P_SECURE, \
2853 (char_u *)&vvv, PV_NONE, \ 2854 (char_u *)&vvv, PV_NONE, \
2854 {(char_u *)"", (char_u *)0L} SCTX_INIT}, 2855 {(char_u *)"", (char_u *)0L} SCTX_INIT},
2855 2856
2856 p_term("t_AB", T_CAB) 2857 p_term("t_AB", T_CAB)
2857 p_term("t_AF", T_CAF) 2858 p_term("t_AF", T_CAF)