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.0.059 < prev    next >
Encoding:
Internet Message Format  |  2001-10-31  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.059
  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.0.059
  11. Problem:    Highlighting for 'hlsearch' isn't visible in lines that are
  12.             highlighted for diff highlighting.  (Gary Holloway)
  13. Solution:   Let 'hlsearch' highlighting overrule diff highlighting.
  14. Files:      src/screen.c
  15.  
  16.  
  17. *** ../vim60.58/src/screen.c    Mon Oct 29 14:40:42 2001
  18. --- src/screen.c    Mon Oct 29 14:36:57 2001
  19. ***************
  20. *** 3072,3078 ****
  21.           if (attr == 0 || area_attr != attr)
  22.               area_attr = diff_attr;
  23.           if (attr == 0 || char_attr != attr)
  24. !             char_attr = diff_attr;
  25.           }
  26.   #endif
  27.       }
  28. --- 3072,3083 ----
  29.           if (attr == 0 || area_attr != attr)
  30.               area_attr = diff_attr;
  31.           if (attr == 0 || char_attr != attr)
  32. !         {
  33. !             if (search_attr != 0)
  34. !             char_attr = search_attr;
  35. !             else
  36. !             char_attr = diff_attr;
  37. !         }
  38.           }
  39.   #endif
  40.       }
  41. *** ../vim60.58/src/version.c    Thu Nov  1 14:56:27 2001
  42. --- src/version.c    Thu Nov  1 14:58:21 2001
  43. ***************
  44. *** 608,609 ****
  45. --- 608,611 ----
  46.   {   /* Add new patch number below this line */
  47. + /**/
  48. +     59,
  49.   /**/
  50.  
  51. -- 
  52. ARTHUR: The swallow may fly south with the sun, or the house martin or the
  53.         plover seek warmer hot lands in winter, yet these are not strangers to
  54.         our land.
  55. SOLDIER: Are you suggesting coconuts migrate?
  56.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  57.  
  58.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  59. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  60.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  61.