comparison src/structs.h @ 30986:360f286b5869 v9.0.0828

patch 9.0.0828: various typos Commit: https://github.com/vim/vim/commit/c57b5bcd22826e0852c2bc9c7d4382e1cac7cb74 Author: dundargoc <gocdundar@gmail.com> Date: Wed Nov 2 13:30:51 2022 +0000 patch 9.0.0828: various typos Problem: Various typos. Solution: Correct typos. (closes https://github.com/vim/vim/issues/11432)
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Nov 2022 14:45:11 +0100
parents 35265d9d24df
children d6355c3af211
comparison
equal deleted inserted replaced
30985:25894f29103e 30986:360f286b5869
821 821
822 #define TP_FLAG_WRAP 0x080 // virtual text wraps - when missing 822 #define TP_FLAG_WRAP 0x080 // virtual text wraps - when missing
823 // text is truncated 823 // text is truncated
824 #define TP_FLAG_START_INCL 0x100 // "start_incl" copied from proptype 824 #define TP_FLAG_START_INCL 0x100 // "start_incl" copied from proptype
825 825
826 #define PROP_TEXT_MIN_CELLS 4 // minimun number of cells to use for 826 #define PROP_TEXT_MIN_CELLS 4 // minimum number of cells to use for
827 // the text, even when truncating 827 // the text, even when truncating
828 828
829 /* 829 /*
830 * Structure defining a property type. 830 * Structure defining a property type.
831 */ 831 */
1882 1882
1883 #define IMP_FLAGS_RELOAD 2 // script reloaded, OK to redefine 1883 #define IMP_FLAGS_RELOAD 2 // script reloaded, OK to redefine
1884 #define IMP_FLAGS_AUTOLOAD 4 // script still needs to be loaded 1884 #define IMP_FLAGS_AUTOLOAD 4 // script still needs to be loaded
1885 1885
1886 /* 1886 /*
1887 * Info about an encoutered script. 1887 * Info about an encountered script.
1888 * When sn_state has the SN_STATE_NOT_LOADED is has not been sourced yet. 1888 * When sn_state has the SN_STATE_NOT_LOADED is has not been sourced yet.
1889 */ 1889 */
1890 typedef struct 1890 typedef struct
1891 { 1891 {
1892 char_u *sn_name; // full path of script file 1892 char_u *sn_name; // full path of script file
2093 int fs_min_refcount; // nr of closures on this funcstack 2093 int fs_min_refcount; // nr of closures on this funcstack
2094 int fs_copyID; // for garbage collection 2094 int fs_copyID; // for garbage collection
2095 }; 2095 };
2096 2096
2097 /* 2097 /*
2098 * Structure to hold the variables declared in a loop that are possiblly used 2098 * Structure to hold the variables declared in a loop that are possibly used
2099 * in a closure. 2099 * in a closure.
2100 */ 2100 */
2101 typedef struct loopvars_S loopvars_T; 2101 typedef struct loopvars_S loopvars_T;
2102 struct loopvars_S 2102 struct loopvars_S
2103 { 2103 {