Compare commits

...

2 Commits

Author SHA1 Message Date
Bram Moolenaar
d9205ca1fd updated for version 7.2-025 2008-10-02 20:55:54 +00:00
Bram Moolenaar
991e10f3c7 updated for version 7.2-024 2008-10-02 20:48:41 +00:00
3 changed files with 11 additions and 1 deletions

View File

@@ -1132,7 +1132,8 @@ getcount:
out_flush();
#endif
#ifdef FEAT_AUTOCMD
did_cursorhold = FALSE;
if (ca.cmdchar != K_IGNORE)
did_cursorhold = FALSE;
#endif
State = NORMAL;

View File

@@ -7974,6 +7974,11 @@ set_num_option(opt_idx, varp, value, errbuf, errbuflen, opt_flags)
else /* curwin->w_p_scr > curwin->w_height */
curwin->w_p_scr = curwin->w_height;
}
if (p_hi < 0)
{
errmsg = e_positive;
p_hi = 0;
}
if (p_report < 0)
{
errmsg = e_positive;

View File

@@ -676,6 +676,10 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
25,
/**/
24,
/**/
23,
/**/