summaryrefslogtreecommitdiff
path: root/usr.bin/vim/version.h
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1996-09-07 21:40:33 +0000
committerJason Downs <downsj@cvs.openbsd.org>1996-09-07 21:40:33 +0000
commitc224fc199c25dd257673c273eb344786b9bf532c (patch)
tree8f8ed1297120c537480d9e5d46bfe7452bd8505b /usr.bin/vim/version.h
parentd0d91e2d3d6569e4defdd5178241f28fa678d753 (diff)
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.
Diffstat (limited to 'usr.bin/vim/version.h')
-rw-r--r--usr.bin/vim/version.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/usr.bin/vim/version.h b/usr.bin/vim/version.h
new file mode 100644
index 00000000000..cf9b0423e6f
--- /dev/null
+++ b/usr.bin/vim/version.h
@@ -0,0 +1,32 @@
+/* $OpenBSD: version.h,v 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"