Karsten Hopp 502c3c
To: vim_dev@googlegroups.com
Karsten Hopp 502c3c
Subject: Patch 7.3.684
Karsten Hopp 502c3c
Fcc: outbox
Karsten Hopp 502c3c
From: Bram Moolenaar <Bram@moolenaar.net>
Karsten Hopp 502c3c
Mime-Version: 1.0
Karsten Hopp 502c3c
Content-Type: text/plain; charset=UTF-8
Karsten Hopp 502c3c
Content-Transfer-Encoding: 8bit
Karsten Hopp 502c3c
------------
Karsten Hopp 502c3c
Karsten Hopp 502c3c
Patch 7.3.684
Karsten Hopp 502c3c
Problem:    "make test" does not delete lua.vim.
Karsten Hopp 502c3c
Solution:   Add lua.vim to the clean target. (Simon Ruderich)
Karsten Hopp 502c3c
Files:	    src/testdir/Makefile, src/testdir/Make_dos.mak,
Karsten Hopp 502c3c
	    src/testdir/Make_ming.mak, src/testdir/Make_vms.mms
Karsten Hopp 502c3c
Karsten Hopp 502c3c
Karsten Hopp 502c3c
*** ../vim-7.3.683/src/testdir/Makefile	2012-06-29 12:54:32.000000000 +0200
Karsten Hopp 502c3c
--- src/testdir/Makefile	2012-10-06 19:04:54.000000000 +0200
Karsten Hopp 502c3c
***************
Karsten Hopp 502c3c
*** 48,57 ****
Karsten Hopp 502c3c
  $(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG)
Karsten Hopp 502c3c
  
Karsten Hopp 502c3c
  clean:
Karsten Hopp 502c3c
! 	-rm -rf *.out *.failed *.rej *.orig test.log tiny.vim small.vim mbyte.vim mzscheme.vim test.ok X* valgrind.* viminfo
Karsten Hopp 502c3c
  
Karsten Hopp 502c3c
  test1.out: test1.in
Karsten Hopp 502c3c
! 	-rm -f $*.failed tiny.vim small.vim mbyte.vim mzscheme.vim test.ok X* viminfo
Karsten Hopp 502c3c
  	$(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in
Karsten Hopp 502c3c
  	@/bin/sh -c "if diff test.out $*.ok; \
Karsten Hopp 502c3c
  		then mv -f test.out $*.out; \
Karsten Hopp 502c3c
--- 48,57 ----
Karsten Hopp 502c3c
  $(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG)
Karsten Hopp 502c3c
  
Karsten Hopp 502c3c
  clean:
Karsten Hopp 502c3c
! 	-rm -rf *.out *.failed *.rej *.orig test.log tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok X* valgrind.* viminfo
Karsten Hopp 502c3c
  
Karsten Hopp 502c3c
  test1.out: test1.in
Karsten Hopp 502c3c
! 	-rm -f $*.failed tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok X* viminfo
Karsten Hopp 502c3c
  	$(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in
Karsten Hopp 502c3c
  	@/bin/sh -c "if diff test.out $*.ok; \
Karsten Hopp 502c3c
  		then mv -f test.out $*.out; \
Karsten Hopp 502c3c
***************
Karsten Hopp 502c3c
*** 73,79 ****
Karsten Hopp 502c3c
  		  fi \
Karsten Hopp 502c3c
  		else echo $* NO OUTPUT >>test.log; \
Karsten Hopp 502c3c
  		fi"
Karsten Hopp 502c3c
! #	-rm -rf X* test.ok viminfo
Karsten Hopp 502c3c
  
Karsten Hopp 502c3c
  test49.out: test49.vim
Karsten Hopp 502c3c
  
Karsten Hopp 502c3c
--- 73,79 ----
Karsten Hopp 502c3c
  		  fi \
Karsten Hopp 502c3c
  		else echo $* NO OUTPUT >>test.log; \
Karsten Hopp 502c3c
  		fi"
Karsten Hopp 502c3c
! 	-rm -rf X* test.ok viminfo
Karsten Hopp 502c3c
  
Karsten Hopp 502c3c
  test49.out: test49.vim
Karsten Hopp 502c3c
  
Karsten Hopp 502c3c
*** ../vim-7.3.683/src/testdir/Make_dos.mak	2012-06-29 12:54:32.000000000 +0200
Karsten Hopp 502c3c
--- src/testdir/Make_dos.mak	2012-10-06 19:04:02.000000000 +0200
Karsten Hopp 502c3c
***************
Karsten Hopp 502c3c
*** 62,67 ****
Karsten Hopp 502c3c
--- 62,68 ----
Karsten Hopp 502c3c
  	-if exist tiny.vim del tiny.vim
Karsten Hopp 502c3c
  	-if exist mbyte.vim del mbyte.vim
Karsten Hopp 502c3c
  	-if exist mzscheme.vim del mzscheme.vim
Karsten Hopp 502c3c
+ 	-if exist lua.vim del lua.vim
Karsten Hopp 502c3c
  	-del X*
Karsten Hopp 502c3c
  	-if exist viminfo del viminfo
Karsten Hopp 502c3c
  
Karsten Hopp 502c3c
*** ../vim-7.3.683/src/testdir/Make_ming.mak	2012-06-29 12:54:32.000000000 +0200
Karsten Hopp 502c3c
--- src/testdir/Make_ming.mak	2012-10-06 19:04:08.000000000 +0200
Karsten Hopp 502c3c
***************
Karsten Hopp 502c3c
*** 85,90 ****
Karsten Hopp 502c3c
--- 85,91 ----
Karsten Hopp 502c3c
  	-$(DEL) tiny.vim
Karsten Hopp 502c3c
  	-$(DEL) mbyte.vim
Karsten Hopp 502c3c
  	-$(DEL) mzscheme.vim
Karsten Hopp 502c3c
+ 	-$(DEL) lua.vim
Karsten Hopp 502c3c
  	-$(DEL) X*
Karsten Hopp 502c3c
  	-$(DEL) viminfo
Karsten Hopp 502c3c
  
Karsten Hopp 502c3c
*** ../vim-7.3.683/src/testdir/Make_vms.mms	2012-04-05 16:56:38.000000000 +0200
Karsten Hopp 502c3c
--- src/testdir/Make_vms.mms	2012-10-06 19:04:34.000000000 +0200
Karsten Hopp 502c3c
***************
Karsten Hopp 502c3c
*** 4,10 ****
Karsten Hopp 502c3c
  # Authors:	Zoltan Arpadffy, <arpadffy@polarhome.com>
Karsten Hopp 502c3c
  #		Sandor Kopanyi,  <sandor.kopanyi@mailbox.hu>
Karsten Hopp 502c3c
  #
Karsten Hopp 502c3c
! # Last change:  2012 Apr 05
Karsten Hopp 502c3c
  #
Karsten Hopp 502c3c
  # This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
Karsten Hopp 502c3c
  # Edit the lines in the Configuration section below to select.
Karsten Hopp 502c3c
--- 4,10 ----
Karsten Hopp 502c3c
  # Authors:	Zoltan Arpadffy, <arpadffy@polarhome.com>
Karsten Hopp 502c3c
  #		Sandor Kopanyi,  <sandor.kopanyi@mailbox.hu>
Karsten Hopp 502c3c
  #
Karsten Hopp 502c3c
! # Last change:  2012 Oct 06
Karsten Hopp 502c3c
  #
Karsten Hopp 502c3c
  # This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
Karsten Hopp 502c3c
  # Edit the lines in the Configuration section below to select.
Karsten Hopp 502c3c
***************
Karsten Hopp 502c3c
*** 184,188 ****
Karsten Hopp 502c3c
--- 184,189 ----
Karsten Hopp 502c3c
  	-@ if "''F$SEARCH("small.vim")'"    .NES. "" then delete/noconfirm/nolog small.vim.*
Karsten Hopp 502c3c
  	-@ if "''F$SEARCH("mbyte.vim")'"    .NES. "" then delete/noconfirm/nolog mbyte.vim.*
Karsten Hopp 502c3c
  	-@ if "''F$SEARCH("mzscheme.vim")'" .NES. "" then delete/noconfirm/nolog mzscheme.vim.*
Karsten Hopp 502c3c
+ 	-@ if "''F$SEARCH("lua.vim")'" .NES. "" then delete/noconfirm/nolog lua.vim.*
Karsten Hopp 502c3c
  	-@ if "''F$SEARCH("viminfo.*")'"    .NES. "" then delete/noconfirm/nolog viminfo.*.*
Karsten Hopp 502c3c
  
Karsten Hopp 502c3c
*** ../vim-7.3.683/src/version.c	2012-10-05 21:30:04.000000000 +0200
Karsten Hopp 502c3c
--- src/version.c	2012-10-06 18:59:40.000000000 +0200
Karsten Hopp 502c3c
***************
Karsten Hopp 502c3c
*** 721,722 ****
Karsten Hopp 502c3c
--- 721,724 ----
Karsten Hopp 502c3c
  {   /* Add new patch number below this line */
Karsten Hopp 502c3c
+ /**/
Karsten Hopp 502c3c
+     684,
Karsten Hopp 502c3c
  /**/
Karsten Hopp 502c3c
Karsten Hopp 502c3c
-- 
Karsten Hopp 502c3c
ERIC IDLE PLAYED: THE DEAD COLLECTOR, MR BINT (A VILLAGE NE'ER-DO -WELL VERY
Karsten Hopp 502c3c
                  KEEN ON BURNING WITCHES), SIR ROBIN, THE GUARD WHO DOESN'T
Karsten Hopp 502c3c
                  HICOUGH BUT TRIES TO GET THINGS STRAIGHT, CONCORDE (SIR
Karsten Hopp 502c3c
                  LAUNCELOT'S TRUSTY STEED), ROGER THE SHRUBBER (A SHRUBBER),
Karsten Hopp 502c3c
                  BROTHER MAYNARD
Karsten Hopp 502c3c
                 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
Karsten Hopp 502c3c
Karsten Hopp 502c3c
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
Karsten Hopp 502c3c
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
Karsten Hopp 502c3c
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
Karsten Hopp 502c3c
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///