comparison src/ex_cmds.c @ 821:a2b128f7d705 v7.0c11

updated for version 7.0c11
author vimboss
date Thu, 06 Apr 2006 20:21:51 +0000
parents 23f82b5d2814
children 9ab23f1e137f
comparison
equal deleted inserted replaced
820:57c7403f6599 821:a2b128f7d705
3483 /* It's like all lines in the buffer changed. Need to update 3483 /* It's like all lines in the buffer changed. Need to update
3484 * automatic folding. */ 3484 * automatic folding. */
3485 foldUpdateAll(curwin); 3485 foldUpdateAll(curwin);
3486 #endif 3486 #endif
3487 3487
3488 #if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) 3488 #ifdef FEAT_AUTOCHDIR
3489 if (p_acd && curbuf->b_ffname != NULL 3489 if (p_acd && curbuf->b_ffname != NULL
3490 && vim_chdirfile(curbuf->b_ffname) == OK) 3490 && vim_chdirfile(curbuf->b_ffname) == OK)
3491 shorten_fnames(TRUE); 3491 shorten_fnames(TRUE);
3492 #endif 3492 #endif
3493 /* 3493 /*
3654 } 3654 }
3655 3655
3656 if (p_im) 3656 if (p_im)
3657 need_start_insertmode = TRUE; 3657 need_start_insertmode = TRUE;
3658 3658
3659 #if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) 3659 #ifdef FEAT_AUTOCHDIR
3660 /* Change directories when the acd option is set on. */ 3660 /* Change directories when the acd option is set on. */
3661 if (p_acd && curbuf->b_ffname != NULL 3661 if (p_acd && curbuf->b_ffname != NULL
3662 && vim_chdirfile(curbuf->b_ffname) == OK) 3662 && vim_chdirfile(curbuf->b_ffname) == OK)
3663 shorten_fnames(TRUE); 3663 shorten_fnames(TRUE);
3664 3664 #endif
3665
3666 #if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
3665 if (gui.in_use && curbuf->b_ffname != NULL) 3667 if (gui.in_use && curbuf->b_ffname != NULL)
3666 { 3668 {
3667 # ifdef FEAT_SUN_WORKSHOP 3669 # ifdef FEAT_SUN_WORKSHOP
3668 if (usingSunWorkShop) 3670 if (usingSunWorkShop)
3669 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro); 3671 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);