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

File: [local] / src / usr.bin / vim / Attic / version.h (download)

Revision 1.1.1.1 (vendor branch), Sat Sep 7 21:40:27 1996 UTC (27 years, 9 months ago) by downsj
Branch: VIM
CVS Tags: VIM42
Changes since 1.1: +0 -0 lines

Initial import of vim 4.2.

This is meant to replace nvi in the tree.  Vim, in general, works better,
provides more features, and does not suffer from the license problems
being imposed upon nvi.

On the other hand, vim lacks a non-visual ex mode, in addition to open mode.

This includes the GUI (X11) code, but doesn't try to compile it.


/*	$OpenBSD: version.h,v 1.1.1.1 1996/09/07 21:40:27 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			   2
#define VIM_VERSION_MINOR_STR		  "2"

#define VIM_VERSION_BUILD			   1
#define VIM_VERSION_BUILD_STR		  "1"

#define VIM_VERSION_PATCHLEVEL		   0
#define VIM_VERSION_PATCHLEVEL_STR	  "0"