summaryrefslogtreecommitdiff
path: root/editors/vim6
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-04-30 16:43:16 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-04-30 16:43:16 +0000
commitc4dbe633d658f2adec7ac1fcbc098409e0b3f4da (patch)
tree451e578a7c72f8f4d86bad50f6087578481d1b47 /editors/vim6
parentNote the default optimization flags used by the vendor in a comment. (diff)
Update to Vim 6.0 beta AD
Notes
Notes: svn path=/head/; revision=42089
Diffstat (limited to 'editors/vim6')
-rw-r--r--editors/vim6/Makefile2
-rw-r--r--editors/vim6/distinfo4
-rw-r--r--editors/vim6/files/patch-if_ruby.c13
3 files changed, 3 insertions, 16 deletions
diff --git a/editors/vim6/Makefile b/editors/vim6/Makefile
index de3c7721d752..16340a3eafa5 100644
--- a/editors/vim6/Makefile
+++ b/editors/vim6/Makefile
@@ -7,7 +7,7 @@
#
PORTNAME?= vim
-PORTVERSION= 6.0aa
+PORTVERSION= 6.0ad
PORTREVISION?= 0
CATEGORIES?= editors
MASTER_SITES= ftp://nuxi.ucdavis.edu/pub/vim/unreleased/unix/ \
diff --git a/editors/vim6/distinfo b/editors/vim6/distinfo
index aeba00da88bf..21fee2381765 100644
--- a/editors/vim6/distinfo
+++ b/editors/vim6/distinfo
@@ -1,2 +1,2 @@
-MD5 (vim/vim-6.0aa-src.tar.gz) = 901ade81a8ec584af365351ab4aad6e2
-MD5 (vim/vim-6.0aa-rt.tar.gz) = f89aa34084b0699a0a451425822d915f
+MD5 (vim/vim-6.0ad-src.tar.gz) = 519f3648fff00a6d74322e3d2c2b8169
+MD5 (vim/vim-6.0ad-rt.tar.gz) = a422b7da479c42eea7ce763d7982760d
diff --git a/editors/vim6/files/patch-if_ruby.c b/editors/vim6/files/patch-if_ruby.c
deleted file mode 100644
index 1b219841aac2..000000000000
--- a/editors/vim6/files/patch-if_ruby.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- if_ruby.c.orig Thu Apr 5 02:32:59 2001
-+++ if_ruby.c Sun Apr 29 01:47:30 2001
-@@ -66,6 +66,10 @@
- }
- line = rb_lastline_get();
- if (!NIL_P(line)) {
-+ if (TYPE(line) != T_STRING) {
-+ EMSG("$_ must be an instance of String");
-+ return;
-+ }
- ml_replace(i, (char_u *) STR2CSTR(line), 1);
- changed();
- #ifdef SYNTAX_HL