comparison src/option.h @ 2696:a041f68d0590 v7.3.114

updated for version 7.3.114 Problem: Potential problem in initialization when giving an error message early. Solution: Initialize 'verbosefile' empty. (Ben Schmidt)
author Bram Moolenaar <bram@vim.org>
date Wed, 09 Feb 2011 15:59:37 +0100
parents b2a7d143abe2
children 77f3dd990b12
comparison
equal deleted inserted replaced
2695:b0605f2f9786 2696:a041f68d0590
852 # define VE_INSERT 6 /* includes "all" */ 852 # define VE_INSERT 6 /* includes "all" */
853 # define VE_ALL 4 853 # define VE_ALL 4
854 # define VE_ONEMORE 8 854 # define VE_ONEMORE 8
855 #endif 855 #endif
856 EXTERN long p_verbose; /* 'verbose' */ 856 EXTERN long p_verbose; /* 'verbose' */
857 #ifdef IN_OPTION_C
858 char_u *p_vfile = (char_u *)""; /* used before options are initialized */
859 #else
857 EXTERN char_u *p_vfile; /* 'verbosefile' */ 860 EXTERN char_u *p_vfile; /* 'verbosefile' */
861 #endif
858 EXTERN int p_warn; /* 'warn' */ 862 EXTERN int p_warn; /* 'warn' */
859 #ifdef FEAT_CMDL_COMPL 863 #ifdef FEAT_CMDL_COMPL
860 EXTERN char_u *p_wop; /* 'wildoptions' */ 864 EXTERN char_u *p_wop; /* 'wildoptions' */
861 #endif 865 #endif
862 EXTERN long p_window; /* 'window' */ 866 EXTERN long p_window; /* 'window' */