summaryrefslogtreecommitdiff
path: root/src/misc1.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-08-15 20:24:14 +0000
committerBram Moolenaar <Bram@vim.org>2006-08-15 20:24:14 +0000
commitb6baca5a63184946aec0606f2b141eee34c57d97 (patch)
tree588ae3024c9813b78442fff47d1419bac53a135b /src/misc1.c
parent5f40231e5a154698acd8c0e780216341d640ecf8 (diff)
downloadvim-git-b6baca5a63184946aec0606f2b141eee34c57d97.tar.gz
updated for version 7.0-053v7.0.053
Diffstat (limited to 'src/misc1.c')
-rw-r--r--src/misc1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc1.c b/src/misc1.c
index 5ce1167d2..e2efcfbe1 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -4492,7 +4492,7 @@ shorten_dir(str)
int l = mb_ptr2len(s);
while (--l > 0)
- *d++ = *s++;
+ *d++ = *++s;
}
# endif
}