comparison src/globals.h @ 18498:9e6d5a4abb1c v8.1.2243

patch 8.1.2243: typos in comments Commit: https://github.com/vim/vim/commit/32aa10203bd0b4b270def03311a4599f9ffdecc4 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 2 22:54:41 2019 +0100 patch 8.1.2243: typos in comments Problem: Typos in comments. Solution: Fix the typos. (Dominique Pelle, closes https://github.com/vim/vim/issues/5160) Also adjust formatting a bit.
author Bram Moolenaar <Bram@vim.org>
date Sat, 02 Nov 2019 23:00:06 +0100
parents 1848b3e07266
children df141c730008
comparison
equal deleted inserted replaced
18497:14e9f08eec14 18498:9e6d5a4abb1c
97 97
98 #ifdef FEAT_TEXT_PROP 98 #ifdef FEAT_TEXT_PROP
99 // Array with size Rows x Columns containing zindex of popups. 99 // Array with size Rows x Columns containing zindex of popups.
100 EXTERN short *popup_mask INIT(= NULL); 100 EXTERN short *popup_mask INIT(= NULL);
101 EXTERN short *popup_mask_next INIT(= NULL); 101 EXTERN short *popup_mask_next INIT(= NULL);
102 // Array with flags for tansparent cells of current popup. 102 // Array with flags for transparent cells of current popup.
103 EXTERN char *popup_transparent INIT(= NULL); 103 EXTERN char *popup_transparent INIT(= NULL);
104 104
105 // Flag set to TRUE when popup_mask needs to be updated. 105 // Flag set to TRUE when popup_mask needs to be updated.
106 EXTERN int popup_mask_refresh INIT(= TRUE); 106 EXTERN int popup_mask_refresh INIT(= TRUE);
107 107
391 * position. Search_match_lines is the number of lines after the match (0 for 391 * position. Search_match_lines is the number of lines after the match (0 for
392 * a match within one line), search_match_endcol the column number of the 392 * a match within one line), search_match_endcol the column number of the
393 * character just after the match in the last line. 393 * character just after the match in the last line.
394 */ 394 */
395 EXTERN int highlight_match INIT(= FALSE); // show search match pos 395 EXTERN int highlight_match INIT(= FALSE); // show search match pos
396 EXTERN linenr_T search_match_lines; // lines of of matched string 396 EXTERN linenr_T search_match_lines; // lines of matched string
397 EXTERN colnr_T search_match_endcol; // col nr of match end 397 EXTERN colnr_T search_match_endcol; // col nr of match end
398 #ifdef FEAT_SEARCH_EXTRA 398 #ifdef FEAT_SEARCH_EXTRA
399 EXTERN linenr_T search_first_line INIT(= 0); // for :{FIRST},{last}s/pat 399 EXTERN linenr_T search_first_line INIT(= 0); // for :{FIRST},{last}s/pat
400 EXTERN linenr_T search_last_line INIT(= MAXLNUM); // for :{first},{LAST}s/pat 400 EXTERN linenr_T search_last_line INIT(= MAXLNUM); // for :{first},{LAST}s/pat
401 #endif 401 #endif