mirror of
https://github.com/vim/vim.git
synced 2025-07-25 10:54:51 -04:00
updated for version 7.3.204
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
This commit is contained in:
parent
bd8608d979
commit
9b83c2f979
@ -7657,7 +7657,7 @@ get_c_indent()
|
|||||||
* not the one from "if () {". */
|
* not the one from "if () {". */
|
||||||
if (*l == '}')
|
if (*l == '}')
|
||||||
curwin->w_cursor.col =
|
curwin->w_cursor.col =
|
||||||
(l - ml_get_curline()) + 1;
|
(colnr_T)(l - ml_get_curline()) + 1;
|
||||||
|
|
||||||
if ((trypos = find_start_brace(ind_maxcomment))
|
if ((trypos = find_start_brace(ind_maxcomment))
|
||||||
== NULL
|
== NULL
|
||||||
|
@ -709,6 +709,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
204,
|
||||||
/**/
|
/**/
|
||||||
203,
|
203,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user