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.41 < prev    next >
Encoding:
Internet Message Format  |  1999-08-20  |  2.3 KB

  1. To: vim-dev@vim.org
  2. Subject: patch 5.4.41
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. ------------
  6.  
  7. Patch 5.4.41 
  8. Problem:    Some commands that were not included would give an error message,
  9.             even when after "if 0".
  10. Solution:   Don't give an error message for an unsupported command when not
  11.             executing the command.
  12. Files:      src/ex_docmd.c
  13.  
  14.  
  15. *** ../vim-5.4.40/src/ex_docmd.c    Wed Aug 18 12:53:26 1999
  16. --- src/ex_docmd.c    Sat Aug 21 12:55:36 1999
  17. ***************
  18. *** 2395,2401 ****
  19.   #endif
  20.       default:
  21.           /* Illegal commands have already been handled */
  22. !         errormsg = (char_u *)"Sorry, this command is not implemented";
  23.       }
  24.   
  25.   
  26. --- 2395,2402 ----
  27.   #endif
  28.       default:
  29.           /* Illegal commands have already been handled */
  30. !         if (!ea.skip)
  31. !             errormsg = (char_u *)"Sorry, this command is not implemented";
  32.       }
  33.   
  34.   
  35. *** ../vim-5.4.40/src/version.h    Sat Aug 21 13:05:05 1999
  36. --- src/version.h    Sat Aug 21 13:04:57 1999
  37. ***************
  38. *** 19,26 ****
  39.   #define VIM_VERSION_MINOR_STR        "4"
  40.   #define VIM_VERSION_BUILD         57
  41.   #define VIM_VERSION_BUILD_STR        "57"
  42. ! #define VIM_VERSION_PATCHLEVEL         40
  43. ! #define VIM_VERSION_PATCHLEVEL_STR    "40"
  44.   
  45.   /*
  46.    * VIM_VERSION_NODOT is used for the runtime directory name.
  47. --- 19,26 ----
  48.   #define VIM_VERSION_MINOR_STR        "4"
  49.   #define VIM_VERSION_BUILD         57
  50.   #define VIM_VERSION_BUILD_STR        "57"
  51. ! #define VIM_VERSION_PATCHLEVEL         41
  52. ! #define VIM_VERSION_PATCHLEVEL_STR    "41"
  53.   
  54.   /*
  55.    * VIM_VERSION_NODOT is used for the runtime directory name.
  56. ***************
  57. *** 30,35 ****
  58.    */
  59.   #define VIM_VERSION_NODOT    "vim54"
  60.   #define VIM_VERSION_SHORT    "5.4"
  61. ! #define VIM_VERSION_MEDIUM    "5.4.40"
  62. ! #define VIM_VERSION_LONG    "VIM - Vi IMproved 5.4.40 (1999 Aug 21)"
  63. ! #define VIM_VERSION_LONG_DATE    "VIM - Vi IMproved 5.4.40 (1999 Aug 21, compiled "
  64. --- 30,35 ----
  65.    */
  66.   #define VIM_VERSION_NODOT    "vim54"
  67.   #define VIM_VERSION_SHORT    "5.4"
  68. ! #define VIM_VERSION_MEDIUM    "5.4.41"
  69. ! #define VIM_VERSION_LONG    "VIM - Vi IMproved 5.4.41 (1999 Aug 21)"
  70. ! #define VIM_VERSION_LONG_DATE    "VIM - Vi IMproved 5.4.41 (1999 Aug 21, compiled "
  71.  
  72. --
  73. hundred-and-one symptoms of being an internet addict:
  74. 172. You join listservers just for the extra e-mail.
  75.  
  76. --/-/---- Bram Moolenaar ---- Bram@moolenaar.net ---- Bram@vim.org ---\-\--
  77.   \ \    www.vim.org/iccf      www.moolenaar.net       www.vim.org    / /
  78.