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.246 < prev    next >
Encoding:
Internet Message Format  |  2002-02-20  |  1.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.246
  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.246
  11. Problem:    ":echomsg" didn't use the highlighting set by ":echohl". (Gary
  12.         Holloway)
  13. Solution:   Use the specified attributes for the message. (Yegappan
  14.         Lakshmanan)
  15. Files:        src/eval.c
  16.  
  17.  
  18. *** ../vim60.245/src/eval.c    Mon Feb 18 12:58:16 2002
  19. --- src/eval.c    Thu Feb 21 16:31:10 2002
  20. ***************
  21. *** 7481,7487 ****
  22.       if (ret != FAIL && ga.ga_data != NULL)
  23.       {
  24.       if (eap->cmdidx == CMD_echomsg)
  25. !         MSG((char_u *)ga.ga_data);
  26.       else if (eap->cmdidx == CMD_echoerr)
  27.       {
  28.           /* We don't want to abort following commands, restore did_emsg. */
  29. --- 7481,7487 ----
  30.       if (ret != FAIL && ga.ga_data != NULL)
  31.       {
  32.       if (eap->cmdidx == CMD_echomsg)
  33. !         MSG_ATTR((char_u *)ga.ga_data, echo_attr);
  34.       else if (eap->cmdidx == CMD_echoerr)
  35.       {
  36.           /* We don't want to abort following commands, restore did_emsg. */
  37. *** ../vim60.245/src/version.c    Thu Feb 21 15:45:45 2002
  38. --- src/version.c    Thu Feb 21 16:36:07 2002
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     246,
  45.   /**/
  46.  
  47. -- 
  48. At some point in the project somebody will start whining about the need to
  49. determine the project "requirements".  This involves interviewing people who
  50. don't know what they want but, curiously, know exactly when they need it.
  51.                 (Scott Adams - The Dilbert principle)
  52.  
  53.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  54. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  55. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  56.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  57.