Problem: Various minor code formatting issues.
Solution: Improve code formatting.
// 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;
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();
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);
}
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;
{
int col = dict_get_number(dict, "col");
- prop_add_common( lnum, col, dict, buf, NULL);
+ prop_add_common(lnum, col, dict, buf, NULL);
}
}
}
{
(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--;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 170,
/**/
169,
/**/
#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