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.849 < prev    next >
Encoding:
Internet Message Format  |  2013-03-06  |  1.7 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.849
  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.849
  11. Problem:    ":g//" gives "Pattern not found error" with E486.  Should not use
  12.         the error number, it's not a regular error message.
  13. Solution:   Use a normal message. (David B├╝rgin)
  14. Files:        src/ex_cmds.c
  15.  
  16.  
  17. *** ../vim-7.3.848/src/ex_cmds.c    2013-02-06 18:23:58.000000000 +0100
  18. --- src/ex_cmds.c    2013-03-07 16:05:49.000000000 +0100
  19. ***************
  20. *** 5411,5417 ****
  21.       if (type == 'v')
  22.           smsg((char_u *)_("Pattern found in every line: %s"), pat);
  23.       else
  24. !         smsg((char_u *)_(e_patnotf2), pat);
  25.       }
  26.       else
  27.       global_exe(cmd);
  28. --- 5411,5417 ----
  29.       if (type == 'v')
  30.           smsg((char_u *)_("Pattern found in every line: %s"), pat);
  31.       else
  32. !         smsg((char_u *)_("Pattern not found: %s"), pat);
  33.       }
  34.       else
  35.       global_exe(cmd);
  36. *** ../vim-7.3.848/src/version.c    2013-03-07 15:16:16.000000000 +0100
  37. --- src/version.c    2013-03-07 16:03:57.000000000 +0100
  38. ***************
  39. *** 730,731 ****
  40. --- 730,733 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     849,
  44.   /**/
  45.  
  46. -- 
  47. Apparently, 1 in 5 people in the world are Chinese.  And there are 5
  48. people in my family, so it must be one of them.  It's either my mum
  49. or my dad.  Or my older brother Colin.  Or my younger brother
  50. Ho-Cha-Chu.  But I think it's Colin.
  51.  
  52.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  53. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  54. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  55.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  56.