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 / old / 5.4.42 < prev    next >
Encoding:
Internet Message Format  |  1999-08-20  |  2.5 KB

  1. To: vim-dev@vim.org
  2. Subject: patch 5.4.42
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. ------------
  6.  
  7. Patch 5.4.42
  8. Problem:    ":w" would also cause a truncated message to appear in the message
  9.         history.
  10. Solution:   Don't put a kept message in the message history when it starts
  11.         with "<".
  12. Files:        src/message.c
  13.  
  14.  
  15. *** ../vim-5.4.41/src/message.c    Tue Aug 10 16:10:41 1999
  16. --- src/message.c    Sat Aug 21 18:33:40 1999
  17. ***************
  18. *** 110,118 ****
  19.       return TRUE;
  20.       ++entered;
  21.   
  22. !     /* Add message to history (unless it's a repeated kept message) */
  23.       if (s != keep_msg
  24. !         || (last_msg_hist != NULL
  25.           && last_msg_hist->msg != NULL
  26.           && STRCMP(s, last_msg_hist->msg)))
  27.       add_msg_hist(s, -1, attr);
  28. --- 110,120 ----
  29.       return TRUE;
  30.       ++entered;
  31.   
  32. !     /* Add message to history (unless it's a repeated kept message or a
  33. !      * truncated message) */
  34.       if (s != keep_msg
  35. !         || (*s != '<'
  36. !         && last_msg_hist != NULL
  37.           && last_msg_hist->msg != NULL
  38.           && STRCMP(s, last_msg_hist->msg)))
  39.       add_msg_hist(s, -1, attr);
  40. *** ../vim-5.4.41/src/version.h    Sat Aug 21 15:40:51 1999
  41. --- src/version.h    Sat Aug 21 18:38:48 1999
  42. ***************
  43. *** 19,26 ****
  44.   #define VIM_VERSION_MINOR_STR        "4"
  45.   #define VIM_VERSION_BUILD         57
  46.   #define VIM_VERSION_BUILD_STR        "57"
  47. ! #define VIM_VERSION_PATCHLEVEL         41
  48. ! #define VIM_VERSION_PATCHLEVEL_STR    "41"
  49.   
  50.   /*
  51.    * VIM_VERSION_NODOT is used for the runtime directory name.
  52. --- 19,26 ----
  53.   #define VIM_VERSION_MINOR_STR        "4"
  54.   #define VIM_VERSION_BUILD         57
  55.   #define VIM_VERSION_BUILD_STR        "57"
  56. ! #define VIM_VERSION_PATCHLEVEL         42
  57. ! #define VIM_VERSION_PATCHLEVEL_STR    "42"
  58.   
  59.   /*
  60.    * VIM_VERSION_NODOT is used for the runtime directory name.
  61. ***************
  62. *** 30,35 ****
  63.    */
  64.   #define VIM_VERSION_NODOT    "vim54"
  65.   #define VIM_VERSION_SHORT    "5.4"
  66. ! #define VIM_VERSION_MEDIUM    "5.4.41"
  67. ! #define VIM_VERSION_LONG    "VIM - Vi IMproved 5.4.41 (1999 Aug 21)"
  68. ! #define VIM_VERSION_LONG_DATE    "VIM - Vi IMproved 5.4.41 (1999 Aug 21, compiled "
  69. --- 30,35 ----
  70.    */
  71.   #define VIM_VERSION_NODOT    "vim54"
  72.   #define VIM_VERSION_SHORT    "5.4"
  73. ! #define VIM_VERSION_MEDIUM    "5.4.42"
  74. ! #define VIM_VERSION_LONG    "VIM - Vi IMproved 5.4.42 (1999 Aug 21)"
  75. ! #define VIM_VERSION_LONG_DATE    "VIM - Vi IMproved 5.4.42 (1999 Aug 21, compiled "
  76.  
  77. --
  78. hundred-and-one symptoms of being an internet addict:
  79. 177. You log off of your system because it's time to go to work.
  80.  
  81. --/-/---- Bram Moolenaar ---- Bram@moolenaar.net ---- Bram@vim.org ---\-\--
  82.   \ \    www.vim.org/iccf      www.moolenaar.net       www.vim.org    / /
  83.