diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-16 20:53:34 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-16 20:53:34 +0100 |
commit | a9d23c20879d0dcb289a4db54b3c7df060f87c3c (patch) | |
tree | 789ed779f83e0fc11e8f3ab8fc1835b6dfda752a /src/version.c | |
parent | e32bbded641a5da0263ecf82f9ccc95a8e0a089e (diff) | |
download | vim-git-a9d23c20879d0dcb289a4db54b3c7df060f87c3c.tar.gz |
patch 8.0.0195: fail to jump to static tag in current filev8.0.0195
Problem: Jumping to a tag that is a static item in the current file fails.
(Kazunobu Kuriyama)
Solution: Make sure the first byte of the tag key is not NUL. (Suggested by
James McCoy, closes #1387)
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index cfb4e5969..28c677696 100644 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 195, +/**/ 194, /**/ 193, |