diff options
author | martti <martti@pkgsrc.org> | 2002-01-17 11:37:01 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2002-01-17 11:37:01 +0000 |
commit | e2a6ffac6e4046e889e9729486c5483177780efe (patch) | |
tree | 46a83bcec12f49df19c55e3c20b7b487b3ffdc49 /editors/vim-share/Makefile.common | |
parent | 3bcd2c4f1274b691b5237b81828e662d33ac9dcb (diff) | |
download | pkgsrc-e2a6ffac6e4046e889e9729486c5483177780efe.tar.gz |
Updated vim to 6.0.140
* bufname() may find unlisted buffer while listed buffer matches
* setting 'iminsert' in vimrc may show ruler on alternate screen
* don't set 'iminsert' as a side effect of ":lmap"
* completing values for ":set tags=" didn't escape spaces right
* could unexpectedly apply a mapping in Insert mode
* after using 'wildmenu' not all status lines are redrawn
* leaking memory when wiping out a buffer with local mappings
Diffstat (limited to 'editors/vim-share/Makefile.common')
-rw-r--r-- | editors/vim-share/Makefile.common | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/editors/vim-share/Makefile.common b/editors/vim-share/Makefile.common index 73ce224bce3..52b4cc1a9cd 100644 --- a/editors/vim-share/Makefile.common +++ b/editors/vim-share/Makefile.common @@ -1,6 +1,6 @@ -# $NetBSD: Makefile.common,v 1.22 2002/01/14 14:10:28 martti Exp $ +# $NetBSD: Makefile.common,v 1.23 2002/01/17 11:37:01 martti Exp $ -VIM_VERSION= 6.0.130 +VIM_VERSION= 6.0.140 DISTNAME= vim-${VIM_VERSION:C/\.[0-9]*$//} CATEGORIES= editors MASTER_SITES= ftp://ftp.vim.org/pub/editors/vim/unix/ \ @@ -11,10 +11,11 @@ EXTRACT_SUFX= .tar.bz2 # # Following patches were ignored: -# 121, 122, 123, 125 +# 121, 122, 123, 125, 135, 137, 138 # PATCH_SITES+= ${MASTER_SITES:S/unix/patches/} -.for p in 124 126 127 128 129 130 +.for p in 124 126 127 128 129 130 \ + 131 132 133 134 136 139 140 PATCHFILES+= ${VIM_VERSION:C/\.[0-9]*$//}.${p} .endfor |