summaryrefslogtreecommitdiff
path: root/usr.bin/vim/version.h
blob: 6c6741c26074b627b515753a673e9678e5de8661 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*	$OpenBSD: version.h,v 1.4 1996/10/15 08:08:02 downsj Exp $	*/
/* vi:set ts=4 sw=4:
 *
 * VIM - Vi IMproved		by Bram Moolenaar
 *
 * Do ":help uganda"  in Vim to read copying and usage conditions.
 * Do ":help credits" in Vim to see a list of people who contributed.
 */

/*
 * This file is currently only used for the Win32 version.
 * Should probably generate all of this from the Makefile or in a separate
 * little C program that reads a small file; e.g., version.dat: 
 *    major=3
 *    minor=29
 *    build=101
 *    patchlevel=0
 *    date=1996 May 23
 */


#define VIM_VERSION_MAJOR			   4
#define VIM_VERSION_MAJOR_STR		  "4"

#define VIM_VERSION_MINOR			   5
#define VIM_VERSION_MINOR_STR		  "5"

#define VIM_VERSION_BUILD			   2
#define VIM_VERSION_BUILD_STR		  "2"

#define VIM_VERSION_PATCHLEVEL		   0
#define VIM_VERSION_PATCHLEVEL_STR	  "0"