comparison src/buffer.c @ 255:c8742c8da9ab

updated for version 7.0070
author vimboss
date Sat, 23 Apr 2005 20:42:23 +0000
parents 027e316cb4f3
children ca33bc409682
comparison
equal deleted inserted replaced
254:c50c82c5e230 255:c8742c8da9ab
2388 #ifdef FEAT_FOLDING 2388 #ifdef FEAT_FOLDING
2389 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */ 2389 /* Set 'foldlevel' to 'foldlevelstart' if it's not negative. */
2390 if (p_fdls >= 0) 2390 if (p_fdls >= 0)
2391 curwin->w_p_fdl = p_fdls; 2391 curwin->w_p_fdl = p_fdls;
2392 #endif 2392 #endif
2393
2394 #ifdef FEAT_SYN_HL
2395 if (curwin->w_p_spell && *buf->b_p_spl != NUL)
2396 did_set_spelllang(buf);
2397 #endif
2393 } 2398 }
2394 2399
2395 /* 2400 /*
2396 * Find the position (lnum and col) for the buffer 'buf' for the current 2401 * Find the position (lnum and col) for the buffer 'buf' for the current
2397 * window. 2402 * window.