comparison src/screen.c @ 353:3161473d6462

updated for version 7.0091
author vimboss
date Thu, 23 Jun 2005 22:36:45 +0000
parents 7e819e81117e
children 0f2b5d1b8117
comparison
equal deleted inserted replaced
352:e5f0dd64a9c6 353:3161473d6462
2502 int has_syntax = FALSE; /* this buffer has syntax highl. */ 2502 int has_syntax = FALSE; /* this buffer has syntax highl. */
2503 int save_did_emsg; 2503 int save_did_emsg;
2504 int has_spell = FALSE; /* this buffer has spell checking */ 2504 int has_spell = FALSE; /* this buffer has spell checking */
2505 # define SPWORDLEN 150 2505 # define SPWORDLEN 150
2506 char_u nextline[SPWORDLEN * 2];/* text with start of the next line */ 2506 char_u nextline[SPWORDLEN * 2];/* text with start of the next line */
2507 int nextlinecol; /* column where nextline[] starts */ 2507 int nextlinecol = 0; /* column where nextline[] starts */
2508 int nextline_idx; /* index in nextline[] where next line 2508 int nextline_idx = 0; /* index in nextline[] where next line
2509 starts */ 2509 starts */
2510 int spell_attr = 0; /* attributes desired by spelling */ 2510 int spell_attr = 0; /* attributes desired by spelling */
2511 int word_end = 0; /* last byte with same spell_attr */ 2511 int word_end = 0; /* last byte with same spell_attr */
2512 static linenr_T checked_lnum = 0; /* line number for checked_col */ 2512 static linenr_T checked_lnum = 0; /* line number for checked_col */
2513 static int checked_col = 0; /* column in checked_lnum up to which 2513 static int checked_col = 0; /* column in checked_lnum up to which