version.h
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

DOS

  1. /* vi:set ts=8 sts=4 sw=4:
  2.  *
  3.  * VIM - Vi IMproved by Bram Moolenaar
  4.  *
  5.  * Do ":help uganda"  in Vim to read copying and usage conditions.
  6.  * Do ":help credits" in Vim to see a list of people who contributed.
  7.  */
  8. /*
  9.  * Define the version number, name, etc.
  10.  * Be careful, keep the numbers in sync!
  11.  * This could be produced by a program, but it doesn't change very often.
  12.  */
  13. #define VIM_VERSION_MAJOR  5
  14. #define VIM_VERSION_MAJOR_STR "5"
  15. #define VIM_VERSION_MINOR  3
  16. #define VIM_VERSION_MINOR_STR "3"
  17. #define VIM_VERSION_BUILD  41
  18. #define VIM_VERSION_BUILD_STR "41"
  19. #define VIM_VERSION_PATCHLEVEL  0
  20. #define VIM_VERSION_PATCHLEVEL_STR "0"
  21. /*
  22.  * VIM_VERSION_SHORT is copied into the swap file (max. length is 6 chars).
  23.  * VIM_VERSION_MEDIUM is used for the startup-screen.
  24.  * VIM_VERSION_LONG is used for the ":version" command and "Vim -h".
  25.  */
  26. #define VIM_VERSION_SHORT "5.3"
  27. #define VIM_VERSION_MEDIUM "5.3"
  28. #define VIM_VERSION_LONG "VIM - Vi IMproved 5.3 (1998 Aug 30)"
  29. #define VIM_VERSION_LONG_DATE "VIM - Vi IMproved 5.3 (1998 Aug 30, compiled "