Patch 7.3.684

51 views
Skip to first unread message

Bram Moolenaar

unread,
Oct 6, 2012, 1:10:53 PM10/6/12
to vim...@googlegroups.com

Patch 7.3.684
Problem: "make test" does not delete lua.vim.
Solution: Add lua.vim to the clean target. (Simon Ruderich)
Files: src/testdir/Makefile, src/testdir/Make_dos.mak,
src/testdir/Make_ming.mak, src/testdir/Make_vms.mms


*** ../vim-7.3.683/src/testdir/Makefile 2012-06-29 12:54:32.000000000 +0200
--- src/testdir/Makefile 2012-10-06 19:04:54.000000000 +0200
***************
*** 48,57 ****
$(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG)

clean:
! -rm -rf *.out *.failed *.rej *.orig test.log tiny.vim small.vim mbyte.vim mzscheme.vim test.ok X* valgrind.* viminfo

test1.out: test1.in
! -rm -f $*.failed tiny.vim small.vim mbyte.vim mzscheme.vim test.ok X* viminfo
$(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in
@/bin/sh -c "if diff test.out $*.ok; \
then mv -f test.out $*.out; \
--- 48,57 ----
$(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG)

clean:
! -rm -rf *.out *.failed *.rej *.orig test.log tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok X* valgrind.* viminfo

test1.out: test1.in
! -rm -f $*.failed tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok X* viminfo
$(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in
@/bin/sh -c "if diff test.out $*.ok; \
then mv -f test.out $*.out; \
***************
*** 73,79 ****
fi \
else echo $* NO OUTPUT >>test.log; \
fi"
! # -rm -rf X* test.ok viminfo

test49.out: test49.vim

--- 73,79 ----
fi \
else echo $* NO OUTPUT >>test.log; \
fi"
! -rm -rf X* test.ok viminfo

test49.out: test49.vim

*** ../vim-7.3.683/src/testdir/Make_dos.mak 2012-06-29 12:54:32.000000000 +0200
--- src/testdir/Make_dos.mak 2012-10-06 19:04:02.000000000 +0200
***************
*** 62,67 ****
--- 62,68 ----
-if exist tiny.vim del tiny.vim
-if exist mbyte.vim del mbyte.vim
-if exist mzscheme.vim del mzscheme.vim
+ -if exist lua.vim del lua.vim
-del X*
-if exist viminfo del viminfo

*** ../vim-7.3.683/src/testdir/Make_ming.mak 2012-06-29 12:54:32.000000000 +0200
--- src/testdir/Make_ming.mak 2012-10-06 19:04:08.000000000 +0200
***************
*** 85,90 ****
--- 85,91 ----
-$(DEL) tiny.vim
-$(DEL) mbyte.vim
-$(DEL) mzscheme.vim
+ -$(DEL) lua.vim
-$(DEL) X*
-$(DEL) viminfo

*** ../vim-7.3.683/src/testdir/Make_vms.mms 2012-04-05 16:56:38.000000000 +0200
--- src/testdir/Make_vms.mms 2012-10-06 19:04:34.000000000 +0200
***************
*** 4,10 ****
# Authors: Zoltan Arpadffy, <arpa...@polarhome.com>
# Sandor Kopanyi, <sandor....@mailbox.hu>
#
! # Last change: 2012 Apr 05
#
# This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
# Edit the lines in the Configuration section below to select.
--- 4,10 ----
# Authors: Zoltan Arpadffy, <arpa...@polarhome.com>
# Sandor Kopanyi, <sandor....@mailbox.hu>
#
! # Last change: 2012 Oct 06
#
# This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
# Edit the lines in the Configuration section below to select.
***************
*** 184,188 ****
--- 184,189 ----
-@ if "''F$SEARCH("small.vim")'" .NES. "" then delete/noconfirm/nolog small.vim.*
-@ if "''F$SEARCH("mbyte.vim")'" .NES. "" then delete/noconfirm/nolog mbyte.vim.*
-@ if "''F$SEARCH("mzscheme.vim")'" .NES. "" then delete/noconfirm/nolog mzscheme.vim.*
+ -@ if "''F$SEARCH("lua.vim")'" .NES. "" then delete/noconfirm/nolog lua.vim.*
-@ if "''F$SEARCH("viminfo.*")'" .NES. "" then delete/noconfirm/nolog viminfo.*.*

*** ../vim-7.3.683/src/version.c 2012-10-05 21:30:04.000000000 +0200
--- src/version.c 2012-10-06 18:59:40.000000000 +0200
***************
*** 721,722 ****
--- 721,724 ----
{ /* Add new patch number below this line */
+ /**/
+ 684,
/**/

--
ERIC IDLE PLAYED: THE DEAD COLLECTOR, MR BINT (A VILLAGE NE'ER-DO -WELL VERY
KEEN ON BURNING WITCHES), SIR ROBIN, THE GUARD WHO DOESN'T
HICOUGH BUT TRIES TO GET THINGS STRAIGHT, CONCORDE (SIR
LAUNCELOT'S TRUSTY STEED), ROGER THE SHRUBBER (A SHRUBBER),
BROTHER MAYNARD
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD

/// Bram Moolenaar -- Br...@Moolenaar.net -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///

Charles Campbell

unread,
Oct 9, 2012, 10:53:06 AM10/9/12
to vim...@googlegroups.com
Bram Moolenaar wrote:
> Patch 7.3.684
> Problem: "make test" does not delete lua.vim.
> Solution: Add lua.vim to the clean target. (Simon Ruderich)
> Files: src/testdir/Makefile, src/testdir/Make_dos.mak,
> src/testdir/Make_ming.mak, src/testdir/Make_vms.mms
>
Friendly reminder: this patch appears to be missing from
ftp://ftp.home.vim.org/ .

Regards,
Chip Campbell

Christian Brabandt

unread,
Oct 9, 2012, 11:01:43 AM10/9/12
to vim...@googlegroups.com
But it is there:
ftp://ftp.home.vim.org/pub/vim/patches/7.3/7.3.684

regards,
Christian

Charles Campbell

unread,
Oct 9, 2012, 11:09:58 AM10/9/12
to vim...@googlegroups.com
So it is -- I wonder why curl was failing to retrieve it. Its getting
it now, though, so I don't know what happened.

Regards,
Chip Campbell

Joachim Schmitz

unread,
Oct 9, 2012, 10:55:53 AM10/9/12
to vim...@vim.org
No it is there, and since 6Oct2012

Reply all
Reply to author
Forward
0 new messages