home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.3 / 7.3.1001 < prev    next >
Encoding:
Internet Message Format  |  2013-05-20  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.1001
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.1001
  11. Problem:    Duplicate condition in if.
  12. Solution:   Remove one condition.
  13. Files:        src/regexp_nfa.c
  14.  
  15.  
  16. *** ../vim-7.3.1000/src/regexp_nfa.c    2013-05-21 21:20:16.000000000 +0200
  17. --- src/regexp_nfa.c    2013-05-21 21:56:45.000000000 +0200
  18. ***************
  19. *** 1091,1097 ****
  20.               {
  21.               nfa_inc(®parse);
  22.   
  23. !             if (*regparse == 'n' || *regparse == 'n')
  24.                   startc = reg_string ? NL : NFA_NEWL;
  25.               else
  26.                   if  (*regparse == 'd'
  27. --- 1091,1097 ----
  28.               {
  29.               nfa_inc(®parse);
  30.   
  31. !             if (*regparse == 'n')
  32.                   startc = reg_string ? NL : NFA_NEWL;
  33.               else
  34.                   if  (*regparse == 'd'
  35. *** ../vim-7.3.1000/src/version.c    2013-05-21 21:37:01.000000000 +0200
  36. --- src/version.c    2013-05-21 21:59:09.000000000 +0200
  37. ***************
  38. *** 730,731 ****
  39. --- 730,733 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     1001,
  43.   /**/
  44.  
  45. -- 
  46. SECOND SOLDIER: It could be carried by an African swallow!
  47. FIRST SOLDIER:  Oh  yes! An African swallow maybe ... but not a European
  48.                 swallow. that's my point.
  49.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  50.  
  51.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  52. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  53. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  54.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  55.