Skip to content

Commit

Permalink
patch 9.0.0170: various minor code formatting issues
Browse files Browse the repository at this point in the history
Problem:    Various minor code formatting issues.
Solution:   Improve code formatting.
  • Loading branch information
brammool committed Aug 8, 2022
1 parent 48c3f4e commit 113d9de
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/change.c
Original file line number Diff line number Diff line change
Expand Up @@ -1298,7 +1298,7 @@ del_bytes(
// fixpos is TRUE, we don't want to end up positioned at the NUL,
// unless "restart_edit" is set or 'virtualedit' contains "onemore".
if (col > 0 && fixpos && restart_edit == 0
&& (get_ve_flags() & VE_ONEMORE) == 0)
&& (get_ve_flags() & VE_ONEMORE) == 0)
{
--curwin->w_cursor.col;
curwin->w_cursor.coladd = 0;
Expand Down
3 changes: 2 additions & 1 deletion src/if_lua.c
Original file line number Diff line number Diff line change
Expand Up @@ -1501,7 +1501,8 @@ luaV_buffer_newindex(lua_State *L)
curbuf = buf;
luaL_error(L, "cannot replace line");
}
else changed_bytes(n, 0);
else
changed_bytes(n, 0);
curbuf = buf;
if (b == curwin->w_buffer)
check_cursor_col();
Expand Down
6 changes: 4 additions & 2 deletions src/if_tcl.c
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,8 @@ bufselfcmd(
err = TCL_ERROR;
}
}
else { // objc == 3
else
{ // objc == 3
line = (char *)ml_get_buf(buf, (linenr_T)val1, FALSE);
Tcl_SetResult(interp, line, TCL_VOLATILE);
}
Expand Down Expand Up @@ -1090,7 +1091,8 @@ winselfcmd(
if (err != TCL_OK)
break;
}
else { // objc == 4
else
{ // objc == 4
err = tclgetlinenum(interp, objv[2], &val1, win->w_buffer);
if (err != TCL_OK)
break;
Expand Down
2 changes: 1 addition & 1 deletion src/popupwin.c
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ add_popup_dicts(buf_T *buf, list_T *l)
{
int col = dict_get_number(dict, "col");

prop_add_common( lnum, col, dict, buf, NULL);
prop_add_common(lnum, col, dict, buf, NULL);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/textformat.c
Original file line number Diff line number Diff line change
Expand Up @@ -1189,7 +1189,7 @@ format_lines(
{
(void)del_bytes(indent, FALSE, FALSE);
mark_col_adjust(curwin->w_cursor.lnum,
(colnr_T)0, 0L, (long)-indent, 0);
(colnr_T)0, 0L, (long)-indent, 0);
}
}
curwin->w_cursor.lnum--;
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
170,
/**/
169,
/**/
Expand Down
1 change: 1 addition & 0 deletions src/vim.h
Original file line number Diff line number Diff line change
Expand Up @@ -2829,4 +2829,5 @@ long elapsed(DWORD start_tick);
#define FFED_NO_GLOBAL 2 // only check for script-local functions

#define MAX_LSHIFT_BITS (varnumber_T)((sizeof(uvarnumber_T) * 8) - 1)

#endif // VIM__H

0 comments on commit 113d9de

Please sign in to comment.