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.2 / 7.2.395 < prev    next >
Encoding:
Internet Message Format  |  2010-03-16  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.2.395
  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.2.395
  11. Problem:    In help CTRL=] on g?g? escapes the ?, causing it to fail. (Tony
  12.         Mechelynck)
  13. Solution:   Don't escape ? for a help command. (Sergey Khorev)
  14. Files:        src/normal.c
  15.  
  16.  
  17. *** ../vim-7.2.394/src/normal.c    2010-01-19 15:23:38.000000000 +0100
  18. --- src/normal.c    2010-03-13 13:04:46.000000000 +0100
  19. ***************
  20. *** 5526,5536 ****
  21.           break;
  22.   
  23.       default:
  24.           if (curbuf->b_help)
  25.           STRCPY(buf, "he! ");
  26.           else
  27.           {
  28. -         tag_cmd = TRUE;
  29.           if (g_cmd)
  30.               STRCPY(buf, "tj ");
  31.           else
  32. --- 5526,5536 ----
  33.           break;
  34.   
  35.       default:
  36. +         tag_cmd = TRUE;
  37.           if (curbuf->b_help)
  38.           STRCPY(buf, "he! ");
  39.           else
  40.           {
  41.           if (g_cmd)
  42.               STRCPY(buf, "tj ");
  43.           else
  44. *** ../vim-7.2.394/src/version.c    2010-03-10 17:14:07.000000000 +0100
  45. --- src/version.c    2010-03-17 13:05:11.000000000 +0100
  46. ***************
  47. *** 683,684 ****
  48. --- 683,686 ----
  49.   {   /* Add new patch number below this line */
  50. + /**/
  51. +     395,
  52.   /**/
  53.  
  54. -- 
  55. There are three kinds of people: Those who can count & those who can't.
  56.  
  57.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  58. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  59. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  60.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  61.