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

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.560
  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.560
  11. Problem:    Get an error for a locked argument in extend().
  12. Solution:   Initialize the lock flag for a dictionary. (Yukihiro Nakadaira)
  13. Files:        src/eval.c
  14.  
  15.  
  16. *** ../vim-7.3.559/src/eval.c    2012-06-20 14:02:23.000000000 +0200
  17. --- src/eval.c    2012-06-20 14:08:34.000000000 +0200
  18. ***************
  19. *** 19981,19986 ****
  20. --- 19981,19987 ----
  21.       dictitem_T    *dict_var;
  22.   {
  23.       hash_init(&dict->dv_hashtab);
  24. +     dict->dv_lock = 0;
  25.       dict->dv_refcount = DO_NOT_FREE_CNT;
  26.       dict->dv_copyID = 0;
  27.       dict_var->di_tv.vval.v_dict = dict;
  28. *** ../vim-7.3.559/src/version.c    2012-06-20 14:02:23.000000000 +0200
  29. --- src/version.c    2012-06-20 14:09:34.000000000 +0200
  30. ***************
  31. *** 716,717 ****
  32. --- 716,719 ----
  33.   {   /* Add new patch number below this line */
  34. + /**/
  35. +     560,
  36.   /**/
  37.  
  38. -- 
  39. "Oh, no!  NOT the Spanish Inquisition!"
  40. "NOBODY expects the Spanish Inquisition!!!"
  41.                 -- Monty Python sketch --
  42. "Oh, no!  NOT another option!"
  43. "EVERYBODY expects another option!!!"
  44.                 -- Discussion in vim-dev mailing list --
  45.  
  46.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  47. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  48. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  49.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  50.