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 / 6.1.095 < prev    next >
Encoding:
Internet Message Format  |  2002-06-12  |  1.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.095
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.1.095
  11. Problem:    When using signs can free an item on the stack.
  12.         Overruling sign colors doesn't work. (Srikanth Sankaran)
  13. Solution:   Don't free the item on the stack.  Use NULL instead of "none" for
  14.         the value of the color.
  15. Files:        src/gui_x11.c
  16.  
  17.  
  18. *** ../vim61.094/src/gui_x11.c    Sat May  4 22:23:07 2002
  19. --- src/gui_x11.c    Thu Jun 13 19:39:43 2002
  20. ***************
  21. *** 3225,3231 ****
  22.       {
  23.           XpmColorSymbol color[5] =
  24.           {
  25. !         {"none", "none", 0},
  26.           {"iconColor1", NULL, 0},
  27.           {"bottomShadowColor", NULL, 0},
  28.           {"topShadowColor", NULL, 0},
  29. --- 3225,3231 ----
  30.       {
  31.           XpmColorSymbol color[5] =
  32.           {
  33. !         {"none", NULL, 0},
  34.           {"iconColor1", NULL, 0},
  35.           {"bottomShadowColor", NULL, 0},
  36.           {"topShadowColor", NULL, 0},
  37. ***************
  38. *** 3251,3257 ****
  39.           sign = NULL;
  40.           EMSG(_("E255: Couldn't read in sign data!"));
  41.           }
  42. -         vim_free(attrs.colorsymbols);
  43.       }
  44.       }
  45.   
  46. --- 3251,3256 ----
  47. *** ../vim61.094/src/version.c    Sun Jun  9 20:51:06 2002
  48. --- src/version.c    Thu Jun 13 19:40:37 2002
  49. ***************
  50. *** 608,609 ****
  51. --- 608,611 ----
  52.   {   /* Add new patch number below this line */
  53. + /**/
  54. +     95,
  55.   /**/
  56.  
  57. -- 
  58. hundred-and-one symptoms of being an internet addict:
  59. 214. Your MCI "Circle of Friends" are all Hayes-compatible.
  60.  
  61.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  62. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  63. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  64.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  65.