Skip to content

Commit 415c058

Browse files
committed
Merge branch 'vim'
2 parents a8fce72 + 4938b99 commit 415c058

16 files changed

+117
-16
lines changed

.hgtags

+7
Original file line numberDiff line numberDiff line change
@@ -3345,3 +3345,10 @@ d129b939a19065a0a5302077d2a9737ed2dc0bf0 v7-4-618
33453345
1ffe91b5e51408d9f68ed8651bb3a85f68365ad1 v7-4-620
33463346
f884a1140a0a143ad21b08166e2b72dd131b78c2 v7-4-621
33473347
599112d00aa96072d75b1d6a5bcd7123d055daa5 v7-4-622
3348+
3cca9b0cc1a0d31ac6c6a0b69544dee96ff280b4 v7-4-623
3349+
f8f2a61e538d4094e29db47954516d572b2dcca4 v7-4-624
3350+
4b1e3b3aa78abcdab840189d766f54ebdb2712fe v7-4-625
3351+
68e0e6bb8250f9b595b517e7061e83796a4b3ec0 v7-4-626
3352+
c77ef1bf9623d0c7ebd7e011e6ce7a3a12b0bf41 v7-4-627
3353+
6eecaf5a18ca95f0ff06dc2ac88015e6bb6f70ac v7-4-628
3354+
f28c171348fbfe055c86a354b4d235e2786215d9 v7-4-629

runtime/doc/term.txt

+8-4
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,11 @@ The options are listed below. The associated termcap code is always equal to
224224
the last two characters of the option name. Only one termcap code is
225225
required: Cursor motion, 't_cm'.
226226

227-
The options 't_da', 't_db', 't_ms', 't_xs' represent flags in the termcap.
228-
When the termcap flag is present, the option will be set to "y". But any
229-
non-empty string means that the flag is set. An empty string means that the
230-
flag is not set. 't_CS' works like this too, but it isn't a termcap flag.
227+
The options 't_da', 't_db', 't_ms', 't_xs', 't_xn' represent flags in the
228+
termcap. When the termcap flag is present, the option will be set to "y".
229+
But any non-empty string means that the flag is set. An empty string means
230+
that the flag is not set. 't_CS' works like this too, but it isn't a termcap
231+
flag.
231232

232233
OUTPUT CODES
233234
option meaning ~
@@ -281,6 +282,9 @@ OUTPUT CODES
281282
t_vs cursor very visible *t_vs* *'t_vs'*
282283
*t_xs* *'t_xs'*
283284
t_xs if non-empty, standout not erased by overwriting (hpterm)
285+
*t_xn* *'t_xn'*
286+
t_xn if non-empty, character writing at the last cell of screen
287+
didn't causes scrolling
284288
t_ZH italics mode *t_ZH* *'t_ZH'*
285289
t_ZR italics end *t_ZR* *'t_ZR'*
286290

src/if_cscope.c

+16
Original file line numberDiff line numberDiff line change
@@ -1507,9 +1507,16 @@ cs_insert_filelist(fname, ppath, flags, sb)
15071507
}
15081508
else
15091509
{
1510+
csinfo_T *t_csinfo = csinfo;
1511+
15101512
/* Reallocate space for more connections. */
15111513
csinfo_size *= 2;
15121514
csinfo = vim_realloc(csinfo, sizeof(csinfo_T)*csinfo_size);
1515+
if (csinfo == NULL)
1516+
{
1517+
vim_free(t_csinfo);
1518+
csinfo_size = 0;
1519+
}
15131520
}
15141521
if (csinfo == NULL)
15151522
return -1;
@@ -2059,6 +2066,7 @@ cs_print_tags_priv(matches, cntxts, num_matches)
20592066
int num_matches;
20602067
{
20612068
char *buf = NULL;
2069+
char *t_buf;
20622070
int bufsize = 0; /* Track available bufsize */
20632071
int newsize = 0;
20642072
char *ptag;
@@ -2120,9 +2128,13 @@ cs_print_tags_priv(matches, cntxts, num_matches)
21202128
newsize = (int)(strlen(csfmt_str) + 16 + strlen(lno));
21212129
if (bufsize < newsize)
21222130
{
2131+
t_buf = buf;
21232132
buf = (char *)vim_realloc(buf, newsize);
21242133
if (buf == NULL)
2134+
{
21252135
bufsize = 0;
2136+
vim_free(t_buf);
2137+
}
21262138
else
21272139
bufsize = newsize;
21282140
}
@@ -2143,9 +2155,13 @@ cs_print_tags_priv(matches, cntxts, num_matches)
21432155

21442156
if (bufsize < newsize)
21452157
{
2158+
t_buf = buf;
21462159
buf = (char *)vim_realloc(buf, newsize);
21472160
if (buf == NULL)
2161+
{
21482162
bufsize = 0;
2163+
vim_free(t_buf);
2164+
}
21492165
else
21502166
bufsize = newsize;
21512167
}

src/if_py_both.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -747,12 +747,14 @@ VimToPython(typval_T *our_tv, int depth, PyObject *lookup_dict)
747747
else if (our_tv->v_type == VAR_DICT)
748748
{
749749

750-
hashtab_T *ht = &our_tv->vval.v_dict->dv_hashtab;
751-
long_u todo = ht->ht_used;
750+
hashtab_T *ht;
751+
long_u todo;
752752
hashitem_T *hi;
753753
dictitem_T *di;
754+
754755
if (our_tv->vval.v_dict == NULL)
755756
return NULL;
757+
ht = &our_tv->vval.v_dict->dv_hashtab;
756758

757759
if (!(ret = PyDict_New()))
758760
return NULL;
@@ -763,6 +765,7 @@ VimToPython(typval_T *our_tv, int depth, PyObject *lookup_dict)
763765
return NULL;
764766
}
765767

768+
todo = ht->ht_used;
766769
for (hi = ht->ht_array; todo > 0; ++hi)
767770
{
768771
if (!HASHITEM_EMPTY(hi))

src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ main_loop(cmdwin, noexmode)
11081108
int noexmode; /* TRUE when return on entering Ex mode */
11091109
{
11101110
oparg_T oa; /* operator arguments */
1111-
int previous_got_int = FALSE; /* "got_int" was TRUE */
1111+
volatile int previous_got_int = FALSE; /* "got_int" was TRUE */
11121112
#ifdef FEAT_CONCEAL
11131113
linenr_T conceal_old_cursor_line = 0;
11141114
linenr_T conceal_new_cursor_line = 0;

src/memline.c

+3
Original file line numberDiff line numberDiff line change
@@ -5057,13 +5057,16 @@ ml_updatechunk(buf, line, len, updtype)
50575057
/* May resize here so we don't have to do it in both cases below */
50585058
if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks)
50595059
{
5060+
chunksize_T *t_chunksize = buf->b_ml.ml_chunksize;
5061+
50605062
buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2;
50615063
buf->b_ml.ml_chunksize = (chunksize_T *)
50625064
vim_realloc(buf->b_ml.ml_chunksize,
50635065
sizeof(chunksize_T) * buf->b_ml.ml_numchunks);
50645066
if (buf->b_ml.ml_chunksize == NULL)
50655067
{
50665068
/* Hmmmm, Give up on offset for this buffer */
5069+
vim_free(t_chunksize);
50675070
buf->b_ml.ml_usedchunks = -1;
50685071
return;
50695072
}

src/misc1.c

+4
Original file line numberDiff line numberDiff line change
@@ -3431,10 +3431,14 @@ get_keystroke()
34313431
buf = alloc(buflen);
34323432
else if (maxlen < 10)
34333433
{
3434+
char_u *t_buf = buf;
3435+
34343436
/* Need some more space. This might happen when receiving a long
34353437
* escape sequence. */
34363438
buflen += 100;
34373439
buf = vim_realloc(buf, buflen);
3440+
if (buf == NULL)
3441+
vim_free(t_buf);
34383442
maxlen = (buflen - 6 - len) / 3;
34393443
}
34403444
if (buf == NULL)

src/netbeans.c

+22
Original file line numberDiff line numberDiff line change
@@ -1109,10 +1109,18 @@ nb_get_buf(int bufno)
11091109
{
11101110
if (bufno >= buf_list_size) /* grow list */
11111111
{
1112+
nbbuf_T *t_buf_list = buf_list;
1113+
11121114
incr = bufno - buf_list_size + 90;
11131115
buf_list_size += incr;
11141116
buf_list = (nbbuf_T *)vim_realloc(
11151117
buf_list, buf_list_size * sizeof(nbbuf_T));
1118+
if (buf_list == NULL)
1119+
{
1120+
vim_free(t_buf_list);
1121+
buf_list_size = 0;
1122+
return NULL;
1123+
}
11161124
vim_memset(buf_list + buf_list_size - incr, 0,
11171125
incr * sizeof(nbbuf_T));
11181126
}
@@ -3713,11 +3721,18 @@ addsigntype(
37133721
{
37143722
int incr;
37153723
int oldlen = globalsignmaplen;
3724+
char **t_globalsignmap = globalsignmap;
37163725

37173726
globalsignmaplen *= 2;
37183727
incr = globalsignmaplen - oldlen;
37193728
globalsignmap = (char **)vim_realloc(globalsignmap,
37203729
globalsignmaplen * sizeof(char *));
3730+
if (globalsignmap == NULL)
3731+
{
3732+
vim_free(t_globalsignmap);
3733+
globalsignmaplen = 0;
3734+
return;
3735+
}
37213736
vim_memset(globalsignmap + oldlen, 0, incr * sizeof(char *));
37223737
}
37233738
}
@@ -3743,11 +3758,18 @@ addsigntype(
37433758
{
37443759
int incr;
37453760
int oldlen = buf->signmaplen;
3761+
int *t_signmap = buf->signmap;
37463762

37473763
buf->signmaplen *= 2;
37483764
incr = buf->signmaplen - oldlen;
37493765
buf->signmap = (int *)vim_realloc(buf->signmap,
37503766
buf->signmaplen * sizeof(int));
3767+
if (buf->signmap == NULL)
3768+
{
3769+
vim_free(t_signmap);
3770+
buf->signmaplen = 0;
3771+
return;
3772+
}
37513773
vim_memset(buf->signmap + oldlen, 0, incr * sizeof(int));
37523774
}
37533775
}

src/option.c

+1
Original file line numberDiff line numberDiff line change
@@ -3025,6 +3025,7 @@ static struct vimoption
30253025
p_term("t_WS", T_CWS)
30263026
p_term("t_SI", T_CSI)
30273027
p_term("t_EI", T_CEI)
3028+
p_term("t_xn", T_XN)
30283029
p_term("t_xs", T_XS)
30293030
p_term("t_ZH", T_CZH)
30303031
p_term("t_ZR", T_CZR)

src/regexp_nfa.c

+5-4
Original file line numberDiff line numberDiff line change
@@ -2034,9 +2034,10 @@ nfa_regpiece()
20342034
}
20352035

20362036
/* The engine is very inefficient (uses too many states) when the
2037-
* maximum is much larger than the minimum. Bail out if we can
2038-
* use the other engine. */
2039-
if ((nfa_re_flags & RE_AUTO) && maxval > minval + 200)
2037+
* maximum is much larger than the minimum and when the maximum is
2038+
* large. Bail out if we can use the other engine. */
2039+
if ((nfa_re_flags & RE_AUTO)
2040+
&& (maxval > minval + 200 || maxval > 500))
20402041
return FAIL;
20412042

20422043
/* Ignore previous call to nfa_regatom() */
@@ -4254,7 +4255,6 @@ state_in_list(l, state, subs)
42544255
* Add "state" and possibly what follows to state list ".".
42554256
* Returns "subs_arg", possibly copied into temp_subs.
42564257
*/
4257-
42584258
static regsubs_T *
42594259
addstate(l, state, subs_arg, pim, off)
42604260
nfa_list_T *l; /* runtime state list */
@@ -4392,6 +4392,7 @@ addstate(l, state, subs_arg, pim, off)
43924392
subs = &temp_subs;
43934393
}
43944394

4395+
/* TODO: check for vim_realloc() returning NULL. */
43954396
l->t = vim_realloc(l->t, newlen * sizeof(nfa_thread_T));
43964397
l->len = newlen;
43974398
}

src/screen.c

+5-3
Original file line numberDiff line numberDiff line change
@@ -7981,9 +7981,11 @@ screen_char(off, row, col)
79817981
if (row >= screen_Rows || col >= screen_Columns)
79827982
return;
79837983

7984-
/* Outputting the last character on the screen may scrollup the screen.
7985-
* Don't to it! Mark the character invalid (update it when scrolled up) */
7986-
if (row == screen_Rows - 1 && col == screen_Columns - 1
7984+
/* Outputting a character in the last cell on the screen may scroll the
7985+
* screen up. Only do it when the "xn" termcap property is set, otherwise
7986+
* mark the character invalid (update it when scrolled up). */
7987+
if (*T_XN == NUL
7988+
&& row == screen_Rows - 1 && col == screen_Columns - 1
79877989
#ifdef FEAT_RIGHTLEFT
79887990
/* account for first command-line character in rightleft mode */
79897991
&& !cmdmsg_rl

src/spell.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -311,9 +311,10 @@
311311
# include <time.h> /* for time_t */
312312
#endif
313313

314-
#define MAXWLEN 250 /* Assume max. word len is this many bytes.
314+
#define MAXWLEN 254 /* Assume max. word len is this many bytes.
315315
Some places assume a word length fits in a
316-
byte, thus it can't be above 255. */
316+
byte, thus it can't be above 255.
317+
Must be >= PFD_NOTSPECIAL. */
317318

318319
/* Type used for indexes in the word tree need to be at least 4 bytes. If int
319320
* is 8 bytes we could use something smaller, but what? */

src/term.c

+7
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ static struct builtin_term builtin_termcaps[] =
200200
{(int)KS_VB, IF_EB("\033|f", ESC_STR "|f")},
201201
{(int)KS_MS, "y"},
202202
{(int)KS_UT, "y"},
203+
{(int)KS_XN, "y"},
203204
{(int)KS_LE, "\b"}, /* cursor-left = BS */
204205
{(int)KS_ND, "\014"}, /* cursor-right = CTRL-L */
205206
# ifdef TERMINFO
@@ -658,6 +659,7 @@ static struct builtin_term builtin_termcaps[] =
658659

659660
{(int)KS_MS, "y"}, /* save to move cur in reverse mode */
660661
{(int)KS_UT, "y"},
662+
{(int)KS_XN, "y"},
661663
{(int)KS_LE, "\b"},
662664
# ifdef TERMINFO
663665
{(int)KS_CM, "\033|%i%p1%d;%p2%dH"},/* cursor motion */
@@ -772,6 +774,7 @@ static struct builtin_term builtin_termcaps[] =
772774
{(int)KS_CSF, IF_EB("\033[101;%dm", ESC_STR "[101;%dm")}, /* set screen foreground color */
773775
{(int)KS_MS, "y"},
774776
{(int)KS_UT, "y"},
777+
{(int)KS_XN, "y"},
775778
{(int)KS_LE, "\b"},
776779
# ifdef TERMINFO
777780
{(int)KS_CM, IF_EB("\033[%i%p1%d;%p2%dH",
@@ -1207,6 +1210,7 @@ static struct builtin_term builtin_termcaps[] =
12071210
{(int)KS_UCS, "[UCS]"},
12081211
{(int)KS_MS, "[MS]"},
12091212
{(int)KS_UT, "[UT]"},
1213+
{(int)KS_XN, "[XN]"},
12101214
# ifdef TERMINFO
12111215
{(int)KS_CM, "[%p1%dCM%p2%d]"},
12121216
# else
@@ -1645,6 +1649,9 @@ set_termname(term)
16451649
if ((T_XS == NULL || T_XS == empty_option)
16461650
&& tgetflag("xs") > 0)
16471651
T_XS = (char_u *)"y";
1652+
if ((T_XN == NULL || T_XN == empty_option)
1653+
&& tgetflag("xn") > 0)
1654+
T_XN = (char_u *)"y";
16481655
if ((T_DB == NULL || T_DB == empty_option)
16491656
&& tgetflag("db") > 0)
16501657
T_DB = (char_u *)"y";

src/term.h

+2
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ enum SpecialKey
6666
KS_CSF, /* set foreground color */
6767
KS_CSB, /* set background color */
6868
KS_XS, /* standout not erased by overwriting (hpterm) */
69+
KS_XN, /* newline glitch */
6970
KS_MB, /* blink mode */
7071
KS_CAF, /* set foreground color (ANSI) */
7172
KS_CAB, /* set background color (ANSI) */
@@ -144,6 +145,7 @@ extern char_u *(term_strings[]); /* current terminal strings */
144145
#define T_CSF (term_str(KS_CSF)) /* set foreground color */
145146
#define T_CSB (term_str(KS_CSB)) /* set background color */
146147
#define T_XS (term_str(KS_XS)) /* standout not erased by overwriting */
148+
#define T_XN (term_str(KS_XN)) /* newline glitch */
147149
#define T_MB (term_str(KS_MB)) /* blink mode */
148150
#define T_CAF (term_str(KS_CAF)) /* set foreground color (ANSI) */
149151
#define T_CAB (term_str(KS_CAB)) /* set background color (ANSI) */

src/version.c

+14
Original file line numberDiff line numberDiff line change
@@ -756,6 +756,20 @@ static char *(features[]) =
756756

757757
static int included_patches[] =
758758
{ /* Add new patch number below this line */
759+
/**/
760+
629,
761+
/**/
762+
628,
763+
/**/
764+
627,
765+
/**/
766+
626,
767+
/**/
768+
625,
769+
/**/
770+
624,
771+
/**/
772+
623,
759773
/**/
760774
622,
761775
/**/

src/vim.h

+14
Original file line numberDiff line numberDiff line change
@@ -2047,6 +2047,20 @@ typedef int VimClipboard; /* This is required for the prototypes. */
20472047
#ifdef _MSC_VER
20482048
/* Avoid useless warning "conversion from X to Y of greater size". */
20492049
#pragma warning(disable : 4312)
2050+
/* Avoid warning for old style function declarators */
2051+
#pragma warning(disable : 4131)
2052+
/* Avoid warning for conversion to type with smaller range */
2053+
#pragma warning(disable : 4244)
2054+
/* Avoid warning for conversion to larger size */
2055+
#pragma warning(disable : 4306)
2056+
/* Avoid warning for unreferenced formal parameter */
2057+
#pragma warning(disable : 4100)
2058+
/* Avoid warning for differs in indirection to slightly different base type */
2059+
#pragma warning(disable : 4057)
2060+
/* Avoid warning for constant conditional expression */
2061+
#pragma warning(disable : 4127)
2062+
/* Avoid warning for assignment within conditional */
2063+
#pragma warning(disable : 4706)
20502064
#endif
20512065

20522066
/* Note: a NULL argument for vim_realloc() is not portable, don't use it. */

0 commit comments

Comments
 (0)