comparison src/fileio.c @ 788:b5aed52a4881

updated for version 7.0230
author vimboss
date Mon, 20 Mar 2006 21:47:49 +0000
parents 335444c09581
children 6beb2c667935
comparison
equal deleted inserted replaced
787:1a44839049ae 788:b5aed52a4881
8516 8516
8517 #ifdef FEAT_EVAL 8517 #ifdef FEAT_EVAL
8518 save_current_SID = current_SID; 8518 save_current_SID = current_SID;
8519 8519
8520 # ifdef FEAT_PROFILE 8520 # ifdef FEAT_PROFILE
8521 if (do_profiling) 8521 if (do_profiling == PROF_YES)
8522 prof_child_enter(&wait_time); /* doesn't count for the caller itself */ 8522 prof_child_enter(&wait_time); /* doesn't count for the caller itself */
8523 # endif 8523 # endif
8524 8524
8525 /* Don't use local function variables, if called from a function */ 8525 /* Don't use local function variables, if called from a function */
8526 save_funccalp = save_funccal(); 8526 save_funccalp = save_funccal();
8612 autocmd_match = save_autocmd_match; 8612 autocmd_match = save_autocmd_match;
8613 #ifdef FEAT_EVAL 8613 #ifdef FEAT_EVAL
8614 current_SID = save_current_SID; 8614 current_SID = save_current_SID;
8615 restore_funccal(save_funccalp); 8615 restore_funccal(save_funccalp);
8616 # ifdef FEAT_PROFILE 8616 # ifdef FEAT_PROFILE
8617 if (do_profiling) 8617 if (do_profiling == PROF_YES)
8618 prof_child_exit(&wait_time); 8618 prof_child_exit(&wait_time);
8619 # endif 8619 # endif
8620 #endif 8620 #endif
8621 vim_free(fname); 8621 vim_free(fname);
8622 vim_free(sfname); 8622 vim_free(sfname);