comparison src/ex_cmds.c @ 76:0ef9cebc4f5d v7.0031

updated for version 7.0031
author vimboss
date Wed, 05 Jan 2005 22:19:46 +0000
parents f529edb9bab3
children 1f3902f3eb5c
comparison
equal deleted inserted replaced
75:388f285bda1b 76:0ef9cebc4f5d
3256 msg_scroll = TRUE; 3256 msg_scroll = TRUE;
3257 need_wait_return = FALSE; 3257 need_wait_return = FALSE;
3258 if (eap->getline == NULL) 3258 if (eap->getline == NULL)
3259 theline = getcmdline( 3259 theline = getcmdline(
3260 #ifdef FEAT_EVAL 3260 #ifdef FEAT_EVAL
3261 eap->cstack->cs_whilelevel > 0 ? -1 : 3261 eap->cstack->cs_looplevel > 0 ? -1 :
3262 #endif 3262 #endif
3263 NUL, 0L, 0); 3263 NUL, 0L, 0);
3264 else 3264 else
3265 theline = eap->getline( 3265 theline = eap->getline(
3266 #ifdef FEAT_EVAL 3266 #ifdef FEAT_EVAL
3267 eap->cstack->cs_whilelevel > 0 ? -1 : 3267 eap->cstack->cs_looplevel > 0 ? -1 :
3268 #endif 3268 #endif
3269 NUL, eap->cookie, 0); 3269 NUL, eap->cookie, 0);
3270 lines_left = Rows - 1; 3270 lines_left = Rows - 1;
3271 if (theline == NULL || (theline[0] == '.' && theline[1] == NUL) 3271 if (theline == NULL || (theline[0] == '.' && theline[1] == NUL)
3272 || (!did_undo && u_save(lnum, lnum + 1) == FAIL)) 3272 || (!did_undo && u_save(lnum, lnum + 1) == FAIL))