Karsten Hopp f8b527
To: vim_dev@googlegroups.com
Karsten Hopp f8b527
Subject: Patch 7.4.075
Karsten Hopp f8b527
Fcc: outbox
Karsten Hopp f8b527
From: Bram Moolenaar <Bram@moolenaar.net>
Karsten Hopp f8b527
Mime-Version: 1.0
Karsten Hopp f8b527
Content-Type: text/plain; charset=UTF-8
Karsten Hopp f8b527
Content-Transfer-Encoding: 8bit
Karsten Hopp f8b527
------------
Karsten Hopp f8b527
Karsten Hopp f8b527
Patch 7.4.075
Karsten Hopp f8b527
Problem:    Locally setting 'undolevels' is not tested.
Karsten Hopp f8b527
Solution:   Add a test. (Christian Brabandt)
Karsten Hopp f8b527
Files:      src/testdir/test100.in, src/testdir/test100.ok,
Karsten Hopp f8b527
            src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
Karsten Hopp f8b527
            src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
Karsten Hopp f8b527
            src/testdir/Make_vms.mms, src/testdir/Makefile, src/Makefile
Karsten Hopp f8b527
Karsten Hopp f8b527
Karsten Hopp f8b527
*** ../vim-7.4.074/src/testdir/test100.in	2013-11-07 03:24:56.000000000 +0100
Karsten Hopp f8b527
--- src/testdir/test100.in	2013-11-07 03:20:32.000000000 +0100
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 0 ****
Karsten Hopp f8b527
--- 1,42 ----
Karsten Hopp f8b527
+ Tests for 'undolevel' setting being global-local
Karsten Hopp f8b527
+ 
Karsten Hopp f8b527
+ STARTTEST
Karsten Hopp f8b527
+ :so small.vim
Karsten Hopp f8b527
+ :set nocompatible viminfo+=nviminfo ul=5
Karsten Hopp f8b527
+ :fu! FillBuffer()
Karsten Hopp f8b527
+   :for i in range(1,13)
Karsten Hopp f8b527
+     :put=i
Karsten Hopp f8b527
+     :exe "setg ul=" . &g:ul
Karsten Hopp f8b527
+   :endfor
Karsten Hopp f8b527
+ :endfu
Karsten Hopp f8b527
+ :fu! UndoLevel()
Karsten Hopp f8b527
+   :redir @a | setglobal undolevels? | echon ' global' | setlocal undolevels? | echon ' local' |redir end
Karsten Hopp f8b527
+   :$put a
Karsten Hopp f8b527
+ :endfu
Karsten Hopp f8b527
+ :new one
Karsten Hopp f8b527
+ :0put ='ONE: expecting global undolevels: 5, local undolevels: -123456 (default)'
Karsten Hopp f8b527
+ :call FillBuffer()
Karsten Hopp f8b527
+ :call feedkeys(":earlier 10\n", 't')
Karsten Hopp f8b527
+ :call UndoLevel()
Karsten Hopp f8b527
+ :%w! test.out
Karsten Hopp f8b527
+ :new two
Karsten Hopp f8b527
+ :0put ='TWO: expecting global undolevels: 5, local undolevels: 2 (first) then 10 (afterwards)'
Karsten Hopp f8b527
+ :setlocal ul=2
Karsten Hopp f8b527
+ :call FillBuffer()
Karsten Hopp f8b527
+ :call feedkeys(":earlier 10\n", 't')
Karsten Hopp f8b527
+ :call UndoLevel()
Karsten Hopp f8b527
+ :setlocal ul=10
Karsten Hopp f8b527
+ :call UndoLevel()
Karsten Hopp f8b527
+ :%w >> test.out
Karsten Hopp f8b527
+ :wincmd p
Karsten Hopp f8b527
+ :redir >>test.out | echo "global value shouldn't be changed and still be 5!" | echo 'ONE: expecting global undolevels: 5, local undolevels: -123456 (default)'|:setglobal undolevels? | echon ' global' | setlocal undolevels? | echon ' local' |echo "" |redir end
Karsten Hopp f8b527
+ :new three
Karsten Hopp f8b527
+ :setglobal ul=50
Karsten Hopp f8b527
+ :1put ='global value should be changed to 50'
Karsten Hopp f8b527
+ :2put ='THREE: expecting global undolevels: 50, local undolevels: -123456 (default)'
Karsten Hopp f8b527
+ :call UndoLevel()
Karsten Hopp f8b527
+ :%w >> test.out
Karsten Hopp f8b527
+ :"sleep 10
Karsten Hopp f8b527
+ :qa!
Karsten Hopp f8b527
+ ENDTEST
Karsten Hopp f8b527
+ 
Karsten Hopp f8b527
*** ../vim-7.4.074/src/testdir/test100.ok	2013-11-07 03:24:56.000000000 +0100
Karsten Hopp f8b527
--- src/testdir/test100.ok	2013-11-07 03:11:51.000000000 +0100
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 0 ****
Karsten Hopp f8b527
--- 1,41 ----
Karsten Hopp f8b527
+ ONE: expecting global undolevels: 5, local undolevels: -123456 (default)
Karsten Hopp f8b527
+ 1
Karsten Hopp f8b527
+ 2
Karsten Hopp f8b527
+ 3
Karsten Hopp f8b527
+ 4
Karsten Hopp f8b527
+ 5
Karsten Hopp f8b527
+ 6
Karsten Hopp f8b527
+ 7
Karsten Hopp f8b527
+ 
Karsten Hopp f8b527
+ 
Karsten Hopp f8b527
+   undolevels=5 global
Karsten Hopp f8b527
+   undolevels=-123456 local
Karsten Hopp f8b527
+ TWO: expecting global undolevels: 5, local undolevels: 2 (first) then 10 (afterwards)
Karsten Hopp f8b527
+ 1
Karsten Hopp f8b527
+ 2
Karsten Hopp f8b527
+ 3
Karsten Hopp f8b527
+ 4
Karsten Hopp f8b527
+ 5
Karsten Hopp f8b527
+ 6
Karsten Hopp f8b527
+ 7
Karsten Hopp f8b527
+ 8
Karsten Hopp f8b527
+ 9
Karsten Hopp f8b527
+ 10
Karsten Hopp f8b527
+ 
Karsten Hopp f8b527
+ 
Karsten Hopp f8b527
+   undolevels=5 global
Karsten Hopp f8b527
+   undolevels=2 local
Karsten Hopp f8b527
+ 
Karsten Hopp f8b527
+   undolevels=5 global
Karsten Hopp f8b527
+   undolevels=10 local
Karsten Hopp f8b527
+ 
Karsten Hopp f8b527
+ global value shouldn't be changed and still be 5!
Karsten Hopp f8b527
+ ONE: expecting global undolevels: 5, local undolevels: -123456 (default)
Karsten Hopp f8b527
+   undolevels=5 global
Karsten Hopp f8b527
+   undolevels=-123456 local
Karsten Hopp f8b527
+ 
Karsten Hopp f8b527
+ global value should be changed to 50
Karsten Hopp f8b527
+ THREE: expecting global undolevels: 50, local undolevels: -123456 (default)
Karsten Hopp f8b527
+ 
Karsten Hopp f8b527
+   undolevels=50 global
Karsten Hopp f8b527
+   undolevels=-123456 local
Karsten Hopp f8b527
*** ../vim-7.4.074/src/testdir/Make_amiga.mak	2013-09-19 17:00:14.000000000 +0200
Karsten Hopp f8b527
--- src/testdir/Make_amiga.mak	2013-11-07 03:07:57.000000000 +0100
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 34,40 ****
Karsten Hopp f8b527
  		test81.out test82.out test83.out test84.out test88.out \
Karsten Hopp f8b527
  		test89.out test90.out test91.out test92.out test93.out \
Karsten Hopp f8b527
  		test94.out test95.out test96.out test97.out test98.out \
Karsten Hopp f8b527
! 		test99.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  .SUFFIXES: .in .out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
--- 34,40 ----
Karsten Hopp f8b527
  		test81.out test82.out test83.out test84.out test88.out \
Karsten Hopp f8b527
  		test89.out test90.out test91.out test92.out test93.out \
Karsten Hopp f8b527
  		test94.out test95.out test96.out test97.out test98.out \
Karsten Hopp f8b527
! 		test99.out test100.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  .SUFFIXES: .in .out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 150,152 ****
Karsten Hopp f8b527
--- 150,153 ----
Karsten Hopp f8b527
  test97.out: test97.in
Karsten Hopp f8b527
  test98.out: test98.in
Karsten Hopp f8b527
  test99.out: test99.in
Karsten Hopp f8b527
+ test100.out: test100.in
Karsten Hopp f8b527
*** ../vim-7.4.074/src/testdir/Make_dos.mak	2013-09-19 17:00:14.000000000 +0200
Karsten Hopp f8b527
--- src/testdir/Make_dos.mak	2013-11-07 03:08:05.000000000 +0100
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 32,38 ****
Karsten Hopp f8b527
  		test79.out test80.out test81.out test82.out test83.out \
Karsten Hopp f8b527
  		test84.out test85.out test86.out test87.out test88.out \
Karsten Hopp f8b527
  		test89.out test90.out test91.out test92.out test93.out \
Karsten Hopp f8b527
! 		test94.out test95.out test96.out test98.out test99.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  SCRIPTS32 =	test50.out test70.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
--- 32,39 ----
Karsten Hopp f8b527
  		test79.out test80.out test81.out test82.out test83.out \
Karsten Hopp f8b527
  		test84.out test85.out test86.out test87.out test88.out \
Karsten Hopp f8b527
  		test89.out test90.out test91.out test92.out test93.out \
Karsten Hopp f8b527
! 		test94.out test95.out test96.out test98.out test99.out \
Karsten Hopp f8b527
! 		test100.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  SCRIPTS32 =	test50.out test70.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
*** ../vim-7.4.074/src/testdir/Make_ming.mak	2013-09-19 17:00:14.000000000 +0200
Karsten Hopp f8b527
--- src/testdir/Make_ming.mak	2013-11-07 03:08:12.000000000 +0100
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 52,58 ****
Karsten Hopp f8b527
  		test79.out test80.out test81.out test82.out test83.out \
Karsten Hopp f8b527
  		test84.out test85.out test86.out test87.out test88.out \
Karsten Hopp f8b527
  		test89.out test90.out test91.out test92.out test93.out \
Karsten Hopp f8b527
! 		test94.out test95.out test96.out test98.out test99.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  SCRIPTS32 =	test50.out test70.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
--- 52,59 ----
Karsten Hopp f8b527
  		test79.out test80.out test81.out test82.out test83.out \
Karsten Hopp f8b527
  		test84.out test85.out test86.out test87.out test88.out \
Karsten Hopp f8b527
  		test89.out test90.out test91.out test92.out test93.out \
Karsten Hopp f8b527
! 		test94.out test95.out test96.out test98.out test99.out \
Karsten Hopp f8b527
! 		test100out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  SCRIPTS32 =	test50.out test70.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
*** ../vim-7.4.074/src/testdir/Make_os2.mak	2013-09-19 17:00:14.000000000 +0200
Karsten Hopp f8b527
--- src/testdir/Make_os2.mak	2013-11-07 03:08:18.000000000 +0100
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 34,40 ****
Karsten Hopp f8b527
  		test76.out test77.out test78.out test79.out test80.out \
Karsten Hopp f8b527
  		test81.out test82.out test83.out test84.out test88.out \
Karsten Hopp f8b527
  		test89.out test90.out test91.out test92.out test93.out \
Karsten Hopp f8b527
! 		test94.out test95.out test96.out test98.out test99.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  .SUFFIXES: .in .out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
--- 34,41 ----
Karsten Hopp f8b527
  		test76.out test77.out test78.out test79.out test80.out \
Karsten Hopp f8b527
  		test81.out test82.out test83.out test84.out test88.out \
Karsten Hopp f8b527
  		test89.out test90.out test91.out test92.out test93.out \
Karsten Hopp f8b527
! 		test94.out test95.out test96.out test98.out test99.out \
Karsten Hopp f8b527
! 		test100.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  .SUFFIXES: .in .out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
*** ../vim-7.4.074/src/testdir/Make_vms.mms	2013-09-19 17:00:14.000000000 +0200
Karsten Hopp f8b527
--- src/testdir/Make_vms.mms	2013-11-07 03:08:24.000000000 +0100
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 4,10 ****
Karsten Hopp f8b527
  # Authors:	Zoltan Arpadffy, <arpadffy@polarhome.com>
Karsten Hopp f8b527
  #		Sandor Kopanyi,  <sandor.kopanyi@mailbox.hu>
Karsten Hopp f8b527
  #
Karsten Hopp f8b527
! # Last change:  2013 Sep 19
Karsten Hopp f8b527
  #
Karsten Hopp f8b527
  # This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
Karsten Hopp f8b527
  # Edit the lines in the Configuration section below to select.
Karsten Hopp f8b527
--- 4,10 ----
Karsten Hopp f8b527
  # Authors:	Zoltan Arpadffy, <arpadffy@polarhome.com>
Karsten Hopp f8b527
  #		Sandor Kopanyi,  <sandor.kopanyi@mailbox.hu>
Karsten Hopp f8b527
  #
Karsten Hopp f8b527
! # Last change:  2013 Nov 07
Karsten Hopp f8b527
  #
Karsten Hopp f8b527
  # This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
Karsten Hopp f8b527
  # Edit the lines in the Configuration section below to select.
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 78,84 ****
Karsten Hopp f8b527
  	 test77.out test78.out test79.out test80.out test81.out \
Karsten Hopp f8b527
  	 test82.out test83.out test84.out test88.out test89.out \
Karsten Hopp f8b527
  	 test90.out test91.out test92.out test93.out test94.out \
Karsten Hopp f8b527
! 	 test95.out test96.out test97.out test98.out test99.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  # Known problems:
Karsten Hopp f8b527
  # Test 30: a problem around mac format - unknown reason
Karsten Hopp f8b527
--- 78,85 ----
Karsten Hopp f8b527
  	 test77.out test78.out test79.out test80.out test81.out \
Karsten Hopp f8b527
  	 test82.out test83.out test84.out test88.out test89.out \
Karsten Hopp f8b527
  	 test90.out test91.out test92.out test93.out test94.out \
Karsten Hopp f8b527
! 	 test95.out test96.out test97.out test98.out test99.out \
Karsten Hopp f8b527
! 	 test100.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  # Known problems:
Karsten Hopp f8b527
  # Test 30: a problem around mac format - unknown reason
Karsten Hopp f8b527
*** ../vim-7.4.074/src/testdir/Makefile	2013-09-22 15:03:34.000000000 +0200
Karsten Hopp f8b527
--- src/testdir/Makefile	2013-11-07 03:08:31.000000000 +0100
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 30,36 ****
Karsten Hopp f8b527
  		test84.out test85.out test86.out test87.out test88.out \
Karsten Hopp f8b527
  		test89.out test90.out test91.out test92.out test93.out \
Karsten Hopp f8b527
  		test94.out test95.out test96.out test97.out test98.out \
Karsten Hopp f8b527
! 		test99.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  SCRIPTS_GUI = test16.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
--- 30,36 ----
Karsten Hopp f8b527
  		test84.out test85.out test86.out test87.out test88.out \
Karsten Hopp f8b527
  		test89.out test90.out test91.out test92.out test93.out \
Karsten Hopp f8b527
  		test94.out test95.out test96.out test97.out test98.out \
Karsten Hopp f8b527
! 		test99.out test100.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  SCRIPTS_GUI = test16.out
Karsten Hopp f8b527
  
Karsten Hopp f8b527
*** ../vim-7.4.074/src/Makefile	2013-08-10 14:21:15.000000000 +0200
Karsten Hopp f8b527
--- src/Makefile	2013-11-07 03:10:40.000000000 +0100
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 1882,1888 ****
Karsten Hopp f8b527
  	test60 test61 test62 test63 test64 test65 test66 test67 test68 test69 \
Karsten Hopp f8b527
  	test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \
Karsten Hopp f8b527
  	test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \
Karsten Hopp f8b527
! 	test90 test91 test92 test93 test94 test95 test96 test97 test98 test99:
Karsten Hopp f8b527
  	cd testdir; rm $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET)
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  testclean:
Karsten Hopp f8b527
--- 1883,1890 ----
Karsten Hopp f8b527
  	test60 test61 test62 test63 test64 test65 test66 test67 test68 test69 \
Karsten Hopp f8b527
  	test70 test71 test72 test73 test74 test75 test76 test77 test78 test79 \
Karsten Hopp f8b527
  	test80 test81 test82 test83 test84 test85 test86 test87 test88 test89 \
Karsten Hopp f8b527
! 	test90 test91 test92 test93 test94 test95 test96 test97 test98 test99 \
Karsten Hopp f8b527
! 	test100 test101 test102 test103 test104 test105 test106 test107:
Karsten Hopp f8b527
  	cd testdir; rm $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTARGET)
Karsten Hopp f8b527
  
Karsten Hopp f8b527
  testclean:
Karsten Hopp f8b527
*** ../vim-7.4.074/src/version.c	2013-11-07 03:04:06.000000000 +0100
Karsten Hopp f8b527
--- src/version.c	2013-11-07 03:10:10.000000000 +0100
Karsten Hopp f8b527
***************
Karsten Hopp f8b527
*** 740,741 ****
Karsten Hopp f8b527
--- 740,743 ----
Karsten Hopp f8b527
  {   /* Add new patch number below this line */
Karsten Hopp f8b527
+ /**/
Karsten Hopp f8b527
+     75,
Karsten Hopp f8b527
  /**/
Karsten Hopp f8b527
Karsten Hopp f8b527
-- 
Karsten Hopp f8b527
Why is "abbreviation" such a long word?
Karsten Hopp f8b527
Karsten Hopp f8b527
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
Karsten Hopp f8b527
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
Karsten Hopp f8b527
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
Karsten Hopp f8b527
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///