diff options
Diffstat (limited to 'src/if_tcl.c')
-rw-r--r-- | src/if_tcl.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/if_tcl.c b/src/if_tcl.c index 9e018a2e2..f2b5541d7 100644 --- a/src/if_tcl.c +++ b/src/if_tcl.c @@ -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); } @@ -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; |