diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-07-14 13:02:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-07-14 13:02:12 +0200 |
commit | ff52518969cced60a3b2d77e65b042e2e1dc2adc (patch) | |
tree | 04f4ae24ca0ccb069a4de463368f0261b73578a9 | |
parent | 3fb14bc73468b6d1da51c75a237e3150f6cc76ee (diff) | |
download | vim-git-7.4a.021.tar.gz |
updated for version 7.4a.021v7.4a.021
Problem: Using feedkeys() doesn't always work.
Solution: Omit feedkeys(). (Ken Takata)
-rw-r--r-- | src/testdir/test98a.in | 3 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/testdir/test98a.in b/src/testdir/test98a.in index 4999c28c7..df07a6c3f 100644 --- a/src/testdir/test98a.in +++ b/src/testdir/test98a.in @@ -24,4 +24,5 @@ setl scb wincmd p -call feedkeys(":setl scb\n\<C-w>\<C-w>", 't') +setl scb +wincmd w diff --git a/src/version.c b/src/version.c index 3add57dd9..59476e523 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 21, +/**/ 20, /**/ 19, |