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.650 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  1.6 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.650
  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.650
  11. Problem:    Completion after ":help \{-" gives an error message and messes up
  12.         the command line.
  13. Solution:   Cancel the tag search if the pattern can't be compiled. (Yasuhiro
  14.         Matsumoto)
  15. Files:        src/tag.c
  16.  
  17.  
  18. *** ../vim-7.3.649/src/tag.c    2012-01-10 22:26:12.000000000 +0100
  19. --- src/tag.c    2012-09-05 14:56:52.000000000 +0200
  20. ***************
  21. *** 1443,1448 ****
  22. --- 1443,1450 ----
  23.       orgpat.len = p_tl;
  24.   
  25.       prepare_pats(&orgpat, has_re);
  26. +     if (has_re && orgpat.regmatch.regprog == NULL)
  27. +     goto findtag_end;
  28.   
  29.   #ifdef FEAT_TAG_BINS
  30.       /* This is only to avoid a compiler warning for using search_info
  31. *** ../vim-7.3.649/src/version.c    2012-09-05 14:18:42.000000000 +0200
  32. --- src/version.c    2012-09-05 15:01:07.000000000 +0200
  33. ***************
  34. *** 721,722 ****
  35. --- 721,724 ----
  36.   {   /* Add new patch number below this line */
  37. + /**/
  38. +     650,
  39.   /**/
  40.  
  41. -- 
  42. GUARD #1:  What, ridden on a horse?
  43. ARTHUR:    Yes!
  44. GUARD #1:  You're using coconuts!
  45. ARTHUR:    What?
  46. GUARD #1:  You've got two empty halves of coconut and you're bangin' 'em
  47.            together.
  48.                                   The Quest for the Holy Grail (Monty Python)
  49.  
  50.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  51. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  52. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  53.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  54.