summaryrefslogtreecommitdiff
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-02-26 17:21:29 +0100
committerBram Moolenaar <Bram@vim.org>2013-02-26 17:21:29 +0100
commitfdf447b2863495170ed20b7f99adfe92e4eae3c0 (patch)
tree11c56a54cbb0ca1c37d4d98859c9f03b9a562316 /src/ex_docmd.c
parentf13f45d59b1a6ab6681ee3953501f319e6d0128b (diff)
downloadvim-git-fdf447b2863495170ed20b7f99adfe92e4eae3c0.tar.gz
updated for version 7.3.838v7.3.838
Problem: Insufficient testing for mksession. Solution: Add tests. (mostly by Roland Eggner)
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 62ae3ad2e..89b523495 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -10839,7 +10839,7 @@ put_view(fd, wp, add_edit, flagp, current_arg_idx)
(long)wp->w_virtcol + 1) < 0
|| put_eol(fd) == FAIL
|| put_line(fd, "else") == FAIL
- || fprintf(fd, " normal! %d|", wp->w_virtcol + 1) < 0
+ || fprintf(fd, " normal! 0%d|", wp->w_virtcol + 1) < 0
|| put_eol(fd) == FAIL
|| put_line(fd, "endif") == FAIL)
return FAIL;