[BACK]Return to version.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / vim

Annotation of src/usr.bin/vim/version.h, Revision 1.4

1.4     ! downsj      1: /* $OpenBSD: version.h,v 1.3 1996/10/14 03:55:34 downsj Exp $  */
1.1       downsj      2: /* vi:set ts=4 sw=4:
                      3:  *
                      4:  * VIM - Vi IMproved       by Bram Moolenaar
                      5:  *
                      6:  * Do ":help uganda"  in Vim to read copying and usage conditions.
                      7:  * Do ":help credits" in Vim to see a list of people who contributed.
                      8:  */
                      9:
                     10: /*
                     11:  * This file is currently only used for the Win32 version.
                     12:  * Should probably generate all of this from the Makefile or in a separate
                     13:  * little C program that reads a small file; e.g., version.dat:
                     14:  *    major=3
                     15:  *    minor=29
                     16:  *    build=101
                     17:  *    patchlevel=0
                     18:  *    date=1996 May 23
                     19:  */
                     20:
                     21:
                     22: #define VIM_VERSION_MAJOR             4
                     23: #define VIM_VERSION_MAJOR_STR        "4"
                     24:
1.3       downsj     25: #define VIM_VERSION_MINOR             5
                     26: #define VIM_VERSION_MINOR_STR        "5"
1.1       downsj     27:
1.4     ! downsj     28: #define VIM_VERSION_BUILD             2
        !            29: #define VIM_VERSION_BUILD_STR        "2"
1.1       downsj     30:
                     31: #define VIM_VERSION_PATCHLEVEL        0
                     32: #define VIM_VERSION_PATCHLEVEL_STR   "0"