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

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.3.022
  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.022
  11. Problem:    When opening a new window the 'spellcapcheck' option is cleared.
  12. Solution:   Copy the correct option value. (Christian Brabandt)
  13. Files:        src/option.c
  14.  
  15.  
  16. *** ../vim-7.3.021/src/option.c    2010-08-15 21:57:28.000000000 +0200
  17. --- src/option.c    2010-10-13 13:48:46.000000000 +0200
  18. ***************
  19. *** 10011,10017 ****
  20.           buf->b_p_smc = p_smc;
  21.   #endif
  22.   #ifdef FEAT_SPELL
  23. !         buf->b_s.b_p_spc = vim_strsave(p_spf);
  24.           (void)compile_cap_prog(&buf->b_s);
  25.           buf->b_s.b_p_spf = vim_strsave(p_spf);
  26.           buf->b_s.b_p_spl = vim_strsave(p_spl);
  27. --- 10011,10017 ----
  28.           buf->b_p_smc = p_smc;
  29.   #endif
  30.   #ifdef FEAT_SPELL
  31. !         buf->b_s.b_p_spc = vim_strsave(p_spc);
  32.           (void)compile_cap_prog(&buf->b_s);
  33.           buf->b_s.b_p_spf = vim_strsave(p_spf);
  34.           buf->b_s.b_p_spl = vim_strsave(p_spl);
  35. *** ../vim-7.3.021/src/version.c    2010-10-10 17:08:28.000000000 +0200
  36. --- src/version.c    2010-10-13 14:02:08.000000000 +0200
  37. ***************
  38. *** 716,717 ****
  39. --- 716,719 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     22,
  43.   /**/
  44.  
  45. -- 
  46. GALAHAD:   Camelot ...
  47. LAUNCELOT: Camelot ...
  48. GAWAIN:    It's only a model.
  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. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  54.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  55.