comparison src/structs.h @ 32244:533e36e02a68 v9.0.1453

patch 9.0.1453: typos in source code and tests Commit: https://github.com/vim/vim/commit/b49dfd0cf296623af2d756cefc3e73b5b307734e Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Fri Apr 14 21:54:25 2023 +0100 patch 9.0.1453: typos in source code and tests Problem: Typos in source code and tests. Solution: Fi the typos. (Dominique Pell?, closes https://github.com/vim/vim/issues/12217)
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Apr 2023 23:00:07 +0200
parents 0cc6b0bccfee
children 252b06c87796
comparison
equal deleted inserted replaced
32243:bf6556bfd412 32244:533e36e02a68
1991 #define IMP_FLAGS_RELOAD 2 // script reloaded, OK to redefine 1991 #define IMP_FLAGS_RELOAD 2 // script reloaded, OK to redefine
1992 #define IMP_FLAGS_AUTOLOAD 4 // script still needs to be loaded 1992 #define IMP_FLAGS_AUTOLOAD 4 // script still needs to be loaded
1993 1993
1994 /* 1994 /*
1995 * Info about an encountered script. 1995 * Info about an encountered script.
1996 * When sn_state has the SN_STATE_NOT_LOADED is has not been sourced yet. 1996 * When sn_state has SN_STATE_NOT_LOADED, it has not been sourced yet.
1997 */ 1997 */
1998 typedef struct 1998 typedef struct
1999 { 1999 {
2000 char_u *sn_name; // full path of script file 2000 char_u *sn_name; // full path of script file
2001 int sn_script_seq; // latest sctx_T sc_seq value 2001 int sn_script_seq; // latest sctx_T sc_seq value
4778 char_u *cts_ptr; // current position in line 4778 char_u *cts_ptr; // current position in line
4779 #ifdef FEAT_PROP_POPUP 4779 #ifdef FEAT_PROP_POPUP
4780 int cts_text_prop_count; // number of text props; when zero 4780 int cts_text_prop_count; // number of text props; when zero
4781 // cts_text_props is not used 4781 // cts_text_props is not used
4782 textprop_T *cts_text_props; // text props (allocated) 4782 textprop_T *cts_text_props; // text props (allocated)
4783 char cts_has_prop_with_text; // TRUE if if a property inserts text 4783 char cts_has_prop_with_text; // TRUE if a property inserts text
4784 int cts_cur_text_width; // width of current inserted text 4784 int cts_cur_text_width; // width of current inserted text
4785 int cts_prop_lines; // nr of properties above or below 4785 int cts_prop_lines; // nr of properties above or below
4786 int cts_first_char; // width text props above the line 4786 int cts_first_char; // width text props above the line
4787 int cts_with_trailing; // include size of trailing props with 4787 int cts_with_trailing; // include size of trailing props with
4788 // last character 4788 // last character