lkundrak / rpms / vim

Forked from rpms/vim 4 years ago
Clone
1c8bb91
To: vim_dev@googlegroups.com
1c8bb91
Subject: Patch 7.4.079
1c8bb91
Fcc: outbox
1c8bb91
From: Bram Moolenaar <Bram@moolenaar.net>
1c8bb91
Mime-Version: 1.0
1c8bb91
Content-Type: text/plain; charset=UTF-8
1c8bb91
Content-Transfer-Encoding: 8bit
1c8bb91
------------
1c8bb91
1c8bb91
Patch 7.4.079
1c8bb91
Problem:    A script cannot detect whether 'hlsearch' highlighting is actually
1c8bb91
            displayed.
1c8bb91
Solution:   Add the "v:hlsearch" variable. (ZyX)
1c8bb91
Files:      src/runtime/doc/eval.txt, src/eval.c, src/ex_docmd.c,
1c8bb91
            src/option.c, src/screen.c, src/search.c, src/tag.c, src/vim.h,
1c8bb91
            src/testdir/test101.in, src/testdir/test101.ok,
1c8bb91
            src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
1c8bb91
            src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
1c8bb91
            src/testdir/Make_vms.mms, src/testdir/Makefile
1c8bb91
1c8bb91
1c8bb91
diff: ../vim-7.4.078/src/runtime/doc/eval.txt: No such file or directory
1c8bb91
diff: src/runtime/doc/eval.txt: No such file or directory
1c8bb91
*** ../vim-7.4.078/src/eval.c	2013-11-05 07:12:59.000000000 +0100
1c8bb91
--- src/eval.c	2013-11-08 04:11:46.000000000 +0100
1c8bb91
***************
1c8bb91
*** 356,361 ****
1c8bb91
--- 356,362 ----
1c8bb91
      {VV_NAME("mouse_col",	 VAR_NUMBER), 0},
1c8bb91
      {VV_NAME("operator",	 VAR_STRING), VV_RO},
1c8bb91
      {VV_NAME("searchforward",	 VAR_NUMBER), 0},
1c8bb91
+     {VV_NAME("hlsearch",	 VAR_NUMBER), 0},
1c8bb91
      {VV_NAME("oldfiles",	 VAR_LIST), 0},
1c8bb91
      {VV_NAME("windowid",	 VAR_NUMBER), VV_RO},
1c8bb91
  };
1c8bb91
***************
1c8bb91
*** 871,876 ****
1c8bb91
--- 872,878 ----
1c8bb91
  	    hash_add(&compat_hashtab, p->vv_di.di_key);
1c8bb91
      }
1c8bb91
      set_vim_var_nr(VV_SEARCHFORWARD, 1L);
1c8bb91
+     set_vim_var_nr(VV_HLSEARCH, 1L);
1c8bb91
      set_reg_var(0);  /* default for v:register is not 0 but '"' */
1c8bb91
  
1c8bb91
  #ifdef EBCDIC
1c8bb91
***************
1c8bb91
*** 20613,20618 ****
1c8bb91
--- 20615,20627 ----
1c8bb91
  		v->di_tv.vval.v_number = get_tv_number(tv);
1c8bb91
  		if (STRCMP(varname, "searchforward") == 0)
1c8bb91
  		    set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
1c8bb91
+ #ifdef FEAT_SEARCH_EXTRA
1c8bb91
+ 		else if (STRCMP(varname, "hlsearch") == 0)
1c8bb91
+ 		{
1c8bb91
+ 		    no_hlsearch = !v->di_tv.vval.v_number;
1c8bb91
+ 		    redraw_all_later(SOME_VALID);
1c8bb91
+ 		}
1c8bb91
+ #endif
1c8bb91
  	    }
1c8bb91
  	    return;
1c8bb91
  	}
1c8bb91
*** ../vim-7.4.078/src/ex_docmd.c	2013-07-24 15:09:37.000000000 +0200
1c8bb91
--- src/ex_docmd.c	2013-11-08 04:17:01.000000000 +0100
1c8bb91
***************
1c8bb91
*** 11389,11395 ****
1c8bb91
  ex_nohlsearch(eap)
1c8bb91
      exarg_T	*eap UNUSED;
1c8bb91
  {
1c8bb91
!     no_hlsearch = TRUE;
1c8bb91
      redraw_all_later(SOME_VALID);
1c8bb91
  }
1c8bb91
  
1c8bb91
--- 11389,11395 ----
1c8bb91
  ex_nohlsearch(eap)
1c8bb91
      exarg_T	*eap UNUSED;
1c8bb91
  {
1c8bb91
!     SET_NO_HLSEARCH(TRUE);
1c8bb91
      redraw_all_later(SOME_VALID);
1c8bb91
  }
1c8bb91
  
1c8bb91
*** ../vim-7.4.078/src/option.c	2013-11-06 05:26:08.000000000 +0100
1c8bb91
--- src/option.c	2013-11-08 04:17:32.000000000 +0100
1c8bb91
***************
1c8bb91
*** 7811,7817 ****
1c8bb91
      /* when 'hlsearch' is set or reset: reset no_hlsearch */
1c8bb91
      else if ((int *)varp == &p_hls)
1c8bb91
      {
1c8bb91
! 	no_hlsearch = FALSE;
1c8bb91
      }
1c8bb91
  #endif
1c8bb91
  
1c8bb91
--- 7811,7817 ----
1c8bb91
      /* when 'hlsearch' is set or reset: reset no_hlsearch */
1c8bb91
      else if ((int *)varp == &p_hls)
1c8bb91
      {
1c8bb91
! 	SET_NO_HLSEARCH(FALSE);
1c8bb91
      }
1c8bb91
  #endif
1c8bb91
  
1c8bb91
*** ../vim-7.4.078/src/screen.c	2013-07-13 12:23:00.000000000 +0200
1c8bb91
--- src/screen.c	2013-11-08 04:17:48.000000000 +0100
1c8bb91
***************
1c8bb91
*** 7447,7453 ****
1c8bb91
  	    {
1c8bb91
  		/* don't free regprog in the match list, it's a copy */
1c8bb91
  		vim_regfree(shl->rm.regprog);
1c8bb91
! 		no_hlsearch = TRUE;
1c8bb91
  	    }
1c8bb91
  	    shl->rm.regprog = NULL;
1c8bb91
  	    shl->lnum = 0;
1c8bb91
--- 7447,7453 ----
1c8bb91
  	    {
1c8bb91
  		/* don't free regprog in the match list, it's a copy */
1c8bb91
  		vim_regfree(shl->rm.regprog);
1c8bb91
! 		SET_NO_HLSEARCH(TRUE);
1c8bb91
  	    }
1c8bb91
  	    shl->rm.regprog = NULL;
1c8bb91
  	    shl->lnum = 0;
1c8bb91
*** ../vim-7.4.078/src/search.c	2013-11-07 04:46:43.000000000 +0100
1c8bb91
--- src/search.c	2013-11-08 04:18:57.000000000 +0100
1c8bb91
***************
1c8bb91
*** 289,295 ****
1c8bb91
  	/* If 'hlsearch' set and search pat changed: need redraw. */
1c8bb91
  	if (p_hls)
1c8bb91
  	    redraw_all_later(SOME_VALID);
1c8bb91
! 	no_hlsearch = FALSE;
1c8bb91
  #endif
1c8bb91
      }
1c8bb91
  }
1c8bb91
--- 289,295 ----
1c8bb91
  	/* If 'hlsearch' set and search pat changed: need redraw. */
1c8bb91
  	if (p_hls)
1c8bb91
  	    redraw_all_later(SOME_VALID);
1c8bb91
! 	SET_NO_HLSEARCH(FALSE);
1c8bb91
  #endif
1c8bb91
      }
1c8bb91
  }
1c8bb91
***************
1c8bb91
*** 333,339 ****
1c8bb91
  	spats[1] = saved_spats[1];
1c8bb91
  	last_idx = saved_last_idx;
1c8bb91
  # ifdef FEAT_SEARCH_EXTRA
1c8bb91
! 	no_hlsearch = saved_no_hlsearch;
1c8bb91
  # endif
1c8bb91
      }
1c8bb91
  }
1c8bb91
--- 333,339 ----
1c8bb91
  	spats[1] = saved_spats[1];
1c8bb91
  	last_idx = saved_last_idx;
1c8bb91
  # ifdef FEAT_SEARCH_EXTRA
1c8bb91
! 	SET_NO_HLSEARCH(saved_no_hlsearch);
1c8bb91
  # endif
1c8bb91
      }
1c8bb91
  }
1c8bb91
***************
1c8bb91
*** 1148,1154 ****
1c8bb91
      if (no_hlsearch && !(options & SEARCH_KEEP))
1c8bb91
      {
1c8bb91
  	redraw_all_later(SOME_VALID);
1c8bb91
! 	no_hlsearch = FALSE;
1c8bb91
      }
1c8bb91
  #endif
1c8bb91
  
1c8bb91
--- 1148,1154 ----
1c8bb91
      if (no_hlsearch && !(options & SEARCH_KEEP))
1c8bb91
      {
1c8bb91
  	redraw_all_later(SOME_VALID);
1c8bb91
! 	SET_NO_HLSEARCH(FALSE);
1c8bb91
      }
1c8bb91
  #endif
1c8bb91
  
1c8bb91
***************
1c8bb91
*** 5561,5567 ****
1c8bb91
  		spats[idx].off.off = off;
1c8bb91
  #ifdef FEAT_SEARCH_EXTRA
1c8bb91
  		if (setlast)
1c8bb91
! 		    no_hlsearch = !hlsearch_on;
1c8bb91
  #endif
1c8bb91
  	    }
1c8bb91
  	}
1c8bb91
--- 5561,5569 ----
1c8bb91
  		spats[idx].off.off = off;
1c8bb91
  #ifdef FEAT_SEARCH_EXTRA
1c8bb91
  		if (setlast)
1c8bb91
! 		{
1c8bb91
! 		    SET_NO_HLSEARCH(!hlsearch_on);
1c8bb91
! 		}
1c8bb91
  #endif
1c8bb91
  	    }
1c8bb91
  	}
1c8bb91
*** ../vim-7.4.078/src/tag.c	2013-09-05 12:06:26.000000000 +0200
1c8bb91
--- src/tag.c	2013-11-08 04:19:14.000000000 +0100
1c8bb91
***************
1c8bb91
*** 3330,3336 ****
1c8bb91
  #ifdef FEAT_SEARCH_EXTRA
1c8bb91
  	/* restore no_hlsearch when keeping the old search pattern */
1c8bb91
  	if (search_options)
1c8bb91
! 	    no_hlsearch = save_no_hlsearch;
1c8bb91
  #endif
1c8bb91
  
1c8bb91
  	/* Return OK if jumped to another file (at least we found the file!). */
1c8bb91
--- 3330,3338 ----
1c8bb91
  #ifdef FEAT_SEARCH_EXTRA
1c8bb91
  	/* restore no_hlsearch when keeping the old search pattern */
1c8bb91
  	if (search_options)
1c8bb91
! 	{
1c8bb91
! 	    SET_NO_HLSEARCH(save_no_hlsearch);
1c8bb91
! 	}
1c8bb91
  #endif
1c8bb91
  
1c8bb91
  	/* Return OK if jumped to another file (at least we found the file!). */
1c8bb91
*** ../vim-7.4.078/src/vim.h	2013-08-02 16:02:27.000000000 +0200
1c8bb91
--- src/vim.h	2013-11-08 04:16:57.000000000 +0100
1c8bb91
***************
1c8bb91
*** 1864,1872 ****
1c8bb91
  #define VV_MOUSE_COL	51
1c8bb91
  #define VV_OP		52
1c8bb91
  #define VV_SEARCHFORWARD 53
1c8bb91
! #define VV_OLDFILES	54
1c8bb91
! #define VV_WINDOWID	55
1c8bb91
! #define VV_LEN		56	/* number of v: vars */
1c8bb91
  
1c8bb91
  #ifdef FEAT_CLIPBOARD
1c8bb91
  
1c8bb91
--- 1864,1873 ----
1c8bb91
  #define VV_MOUSE_COL	51
1c8bb91
  #define VV_OP		52
1c8bb91
  #define VV_SEARCHFORWARD 53
1c8bb91
! #define VV_HLSEARCH	54
1c8bb91
! #define VV_OLDFILES	55
1c8bb91
! #define VV_WINDOWID	56
1c8bb91
! #define VV_LEN		57	/* number of v: vars */
1c8bb91
  
1c8bb91
  #ifdef FEAT_CLIPBOARD
1c8bb91
  
1c8bb91
***************
1c8bb91
*** 2246,2249 ****
1c8bb91
--- 2247,2256 ----
1c8bb91
  /* Character used as separated in autoload function/variable names. */
1c8bb91
  #define AUTOLOAD_CHAR '#'
1c8bb91
  
1c8bb91
+ #ifdef FEAT_EVAL
1c8bb91
+ # define SET_NO_HLSEARCH(flag) no_hlsearch = (flag); set_vim_var_nr(VV_HLSEARCH, !no_hlsearch)
1c8bb91
+ #else
1c8bb91
+ # define SET_NO_HLSEARCH(flag) no_hlsearch = (flag)
1c8bb91
+ #endif
1c8bb91
+ 
1c8bb91
  #endif /* VIM__H */
1c8bb91
*** ../vim-7.4.078/src/testdir/test101.in	2013-11-08 04:28:49.000000000 +0100
1c8bb91
--- src/testdir/test101.in	2013-11-08 04:11:46.000000000 +0100
1c8bb91
***************
1c8bb91
*** 0 ****
1c8bb91
--- 1,45 ----
1c8bb91
+ Test for v:hlsearch     vim: set ft=vim :
1c8bb91
+ 
1c8bb91
+ STARTTEST
1c8bb91
+ :" Last abc: Q
1c8bb91
+ :so small.vim
1c8bb91
+ :new
1c8bb91
+ :call setline(1, repeat(['aaa'], 10))
1c8bb91
+ :set hlsearch nolazyredraw
1c8bb91
+ :let r=[]
1c8bb91
+ :command -nargs=0 -bar AddR :call add(r, [screenattr(1, 1), v:hlsearch])
1c8bb91
+ /aaa
1c8bb91
+ :AddR
1c8bb91
+ :nohlsearch
1c8bb91
+ :AddR
1c8bb91
+ :let v:hlsearch=1
1c8bb91
+ :AddR
1c8bb91
+ :let v:hlsearch=0
1c8bb91
+ :AddR
1c8bb91
+ :set hlsearch
1c8bb91
+ :AddR
1c8bb91
+ :let v:hlsearch=0
1c8bb91
+ :AddR
1c8bb91
+ n:AddR
1c8bb91
+ :let v:hlsearch=0
1c8bb91
+ :AddR
1c8bb91
+ /
1c8bb91
+ :AddR
1c8bb91
+ :let r1=r[0][0]
1c8bb91
+ :" I guess it is not guaranteed that screenattr outputs always the same character
1c8bb91
+ :call map(r, 'v:val[1].":".(v:val[0]==r1?"highlighted":"not highlighted")')
1c8bb91
+ :try
1c8bb91
+ :   let v:hlsearch=[]
1c8bb91
+ :catch
1c8bb91
+ :   call add(r, matchstr(v:exception,'^Vim(let):E\d\+:'))
1c8bb91
+ :endtry
1c8bb91
+ :bwipeout!
1c8bb91
+ :$put=r
1c8bb91
+ :call garbagecollect(1)
1c8bb91
+ :"
1c8bb91
+ :/^start:/,$wq! test.out
1c8bb91
+ :" vim: et ts=4 isk-=\:
1c8bb91
+ :call getchar()
1c8bb91
+ ENDTEST
1c8bb91
+ 
1c8bb91
+ start:
1c8bb91
*** ../vim-7.4.078/src/testdir/test101.ok	2013-11-08 04:28:49.000000000 +0100
1c8bb91
--- src/testdir/test101.ok	2013-11-08 04:11:46.000000000 +0100
1c8bb91
***************
1c8bb91
*** 0 ****
1c8bb91
--- 1,11 ----
1c8bb91
+ start:
1c8bb91
+ 1:highlighted
1c8bb91
+ 0:not highlighted
1c8bb91
+ 1:highlighted
1c8bb91
+ 0:not highlighted
1c8bb91
+ 1:highlighted
1c8bb91
+ 0:not highlighted
1c8bb91
+ 1:highlighted
1c8bb91
+ 0:not highlighted
1c8bb91
+ 1:highlighted
1c8bb91
+ Vim(let):E706:
1c8bb91
*** ../vim-7.4.078/src/testdir/Make_amiga.mak	2013-11-07 03:25:51.000000000 +0100
1c8bb91
--- src/testdir/Make_amiga.mak	2013-11-08 04:22:13.000000000 +0100
1c8bb91
***************
1c8bb91
*** 34,40 ****
1c8bb91
  		test81.out test82.out test83.out test84.out test88.out \
1c8bb91
  		test89.out test90.out test91.out test92.out test93.out \
1c8bb91
  		test94.out test95.out test96.out test97.out test98.out \
1c8bb91
! 		test99.out test100.out
1c8bb91
  
1c8bb91
  .SUFFIXES: .in .out
1c8bb91
  
1c8bb91
--- 34,40 ----
1c8bb91
  		test81.out test82.out test83.out test84.out test88.out \
1c8bb91
  		test89.out test90.out test91.out test92.out test93.out \
1c8bb91
  		test94.out test95.out test96.out test97.out test98.out \
1c8bb91
! 		test99.out test100.out test101.out
1c8bb91
  
1c8bb91
  .SUFFIXES: .in .out
1c8bb91
  
1c8bb91
***************
1c8bb91
*** 151,153 ****
1c8bb91
--- 151,154 ----
1c8bb91
  test98.out: test98.in
1c8bb91
  test99.out: test99.in
1c8bb91
  test100.out: test100.in
1c8bb91
+ test101.out: test101.in
1c8bb91
*** ../vim-7.4.078/src/testdir/Make_dos.mak	2013-11-07 03:25:51.000000000 +0100
1c8bb91
--- src/testdir/Make_dos.mak	2013-11-08 04:22:17.000000000 +0100
1c8bb91
***************
1c8bb91
*** 33,39 ****
1c8bb91
  		test84.out test85.out test86.out test87.out test88.out \
1c8bb91
  		test89.out test90.out test91.out test92.out test93.out \
1c8bb91
  		test94.out test95.out test96.out test98.out test99.out \
1c8bb91
! 		test100.out
1c8bb91
  
1c8bb91
  SCRIPTS32 =	test50.out test70.out
1c8bb91
  
1c8bb91
--- 33,39 ----
1c8bb91
  		test84.out test85.out test86.out test87.out test88.out \
1c8bb91
  		test89.out test90.out test91.out test92.out test93.out \
1c8bb91
  		test94.out test95.out test96.out test98.out test99.out \
1c8bb91
! 		test100.out test101.out
1c8bb91
  
1c8bb91
  SCRIPTS32 =	test50.out test70.out
1c8bb91
  
1c8bb91
*** ../vim-7.4.078/src/testdir/Make_ming.mak	2013-11-07 03:25:51.000000000 +0100
1c8bb91
--- src/testdir/Make_ming.mak	2013-11-08 04:22:19.000000000 +0100
1c8bb91
***************
1c8bb91
*** 53,59 ****
1c8bb91
  		test84.out test85.out test86.out test87.out test88.out \
1c8bb91
  		test89.out test90.out test91.out test92.out test93.out \
1c8bb91
  		test94.out test95.out test96.out test98.out test99.out \
1c8bb91
! 		test100out
1c8bb91
  
1c8bb91
  SCRIPTS32 =	test50.out test70.out
1c8bb91
  
1c8bb91
--- 53,59 ----
1c8bb91
  		test84.out test85.out test86.out test87.out test88.out \
1c8bb91
  		test89.out test90.out test91.out test92.out test93.out \
1c8bb91
  		test94.out test95.out test96.out test98.out test99.out \
1c8bb91
! 		test100out test101.out
1c8bb91
  
1c8bb91
  SCRIPTS32 =	test50.out test70.out
1c8bb91
  
1c8bb91
*** ../vim-7.4.078/src/testdir/Make_os2.mak	2013-11-07 03:25:51.000000000 +0100
1c8bb91
--- src/testdir/Make_os2.mak	2013-11-08 04:22:21.000000000 +0100
1c8bb91
***************
1c8bb91
*** 35,41 ****
1c8bb91
  		test81.out test82.out test83.out test84.out test88.out \
1c8bb91
  		test89.out test90.out test91.out test92.out test93.out \
1c8bb91
  		test94.out test95.out test96.out test98.out test99.out \
1c8bb91
! 		test100.out
1c8bb91
  
1c8bb91
  .SUFFIXES: .in .out
1c8bb91
  
1c8bb91
--- 35,41 ----
1c8bb91
  		test81.out test82.out test83.out test84.out test88.out \
1c8bb91
  		test89.out test90.out test91.out test92.out test93.out \
1c8bb91
  		test94.out test95.out test96.out test98.out test99.out \
1c8bb91
! 		test100.out test101.out
1c8bb91
  
1c8bb91
  .SUFFIXES: .in .out
1c8bb91
  
1c8bb91
*** ../vim-7.4.078/src/testdir/Make_vms.mms	2013-11-07 03:25:51.000000000 +0100
1c8bb91
--- src/testdir/Make_vms.mms	2013-11-08 04:22:23.000000000 +0100
1c8bb91
***************
1c8bb91
*** 4,10 ****
1c8bb91
  # Authors:	Zoltan Arpadffy, <arpadffy@polarhome.com>
1c8bb91
  #		Sandor Kopanyi,  <sandor.kopanyi@mailbox.hu>
1c8bb91
  #
1c8bb91
! # Last change:  2013 Nov 07
1c8bb91
  #
1c8bb91
  # This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
1c8bb91
  # Edit the lines in the Configuration section below to select.
1c8bb91
--- 4,10 ----
1c8bb91
  # Authors:	Zoltan Arpadffy, <arpadffy@polarhome.com>
1c8bb91
  #		Sandor Kopanyi,  <sandor.kopanyi@mailbox.hu>
1c8bb91
  #
1c8bb91
! # Last change:  2013 Nov 08
1c8bb91
  #
1c8bb91
  # This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
1c8bb91
  # Edit the lines in the Configuration section below to select.
1c8bb91
***************
1c8bb91
*** 79,85 ****
1c8bb91
  	 test82.out test83.out test84.out test88.out test89.out \
1c8bb91
  	 test90.out test91.out test92.out test93.out test94.out \
1c8bb91
  	 test95.out test96.out test97.out test98.out test99.out \
1c8bb91
! 	 test100.out
1c8bb91
  
1c8bb91
  # Known problems:
1c8bb91
  # Test 30: a problem around mac format - unknown reason
1c8bb91
--- 79,85 ----
1c8bb91
  	 test82.out test83.out test84.out test88.out test89.out \
1c8bb91
  	 test90.out test91.out test92.out test93.out test94.out \
1c8bb91
  	 test95.out test96.out test97.out test98.out test99.out \
1c8bb91
! 	 test100.out test101.out
1c8bb91
  
1c8bb91
  # Known problems:
1c8bb91
  # Test 30: a problem around mac format - unknown reason
1c8bb91
*** ../vim-7.4.078/src/testdir/Makefile	2013-11-07 03:25:51.000000000 +0100
1c8bb91
--- src/testdir/Makefile	2013-11-08 04:22:26.000000000 +0100
1c8bb91
***************
1c8bb91
*** 30,36 ****
1c8bb91
  		test84.out test85.out test86.out test87.out test88.out \
1c8bb91
  		test89.out test90.out test91.out test92.out test93.out \
1c8bb91
  		test94.out test95.out test96.out test97.out test98.out \
1c8bb91
! 		test99.out test100.out
1c8bb91
  
1c8bb91
  SCRIPTS_GUI = test16.out
1c8bb91
  
1c8bb91
--- 30,36 ----
1c8bb91
  		test84.out test85.out test86.out test87.out test88.out \
1c8bb91
  		test89.out test90.out test91.out test92.out test93.out \
1c8bb91
  		test94.out test95.out test96.out test97.out test98.out \
1c8bb91
! 		test99.out test100.out test101.out
1c8bb91
  
1c8bb91
  SCRIPTS_GUI = test16.out
1c8bb91
  
1c8bb91
*** ../vim-7.4.078/src/version.c	2013-11-08 03:15:39.000000000 +0100
1c8bb91
--- src/version.c	2013-11-08 04:11:08.000000000 +0100
1c8bb91
***************
1c8bb91
*** 740,741 ****
1c8bb91
--- 740,743 ----
1c8bb91
  {   /* Add new patch number below this line */
1c8bb91
+ /**/
1c8bb91
+     79,
1c8bb91
  /**/
1c8bb91
1c8bb91
-- 
1c8bb91
Corn oil comes from corn and olive oil comes from olives, so where
1c8bb91
does baby oil come from?
1c8bb91
1c8bb91
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
1c8bb91
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
1c8bb91
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
1c8bb91
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///