aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorpatthoyts <patthoyts>2005-03-08 15:10:16 +0000
committerpatthoyts <patthoyts>2005-03-08 15:10:16 +0000
commit4e213d5078ebbd043fdd9e8c8593ec8949c3cf92 (patch)
tree5e613d9239663b75e6c5d77f8e85fead9e61da69 /jim.h
parent13e52adb1dea991b724c50d4e2019eda1f517cd5 (diff)
downloadjimtcl-4e213d5078ebbd043fdd9e8c8593ec8949c3cf92.zip
jimtcl-4e213d5078ebbd043fdd9e8c8593ec8949c3cf92.tar.gz
jimtcl-4e213d5078ebbd043fdd9e8c8593ec8949c3cf92.tar.bz2
JIM_VERSION is to be an integer value which we present as MAJOR.MINOR to
users. MAJOR is JIM_VERSION / 100
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/jim.h b/jim.h
index bf59b34..dea7813 100644
--- a/jim.h
+++ b/jim.h
@@ -1,7 +1,7 @@
/* Jim - A small embeddable Tcl interpreter
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
*
- * $Id: jim.h,v 1.43 2005/03/08 13:45:20 patthoyts Exp $
+ * $Id: jim.h,v 1.44 2005/03/08 15:10:16 patthoyts Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -104,9 +104,7 @@
/* Jim version numbering: every version of jim is marked with a
* successive integer number. This is version 0. The first
* stable version will be 1, then 2, 3, and so on. */
-#define JIM_MAJOR_VERSION 0
-#define JIM_MINOR_VERSION 0
-#define JIM_PATCH_LEVEL 2
+#define JIM_VERSION 50
#define JIM_OK 0
#define JIM_ERR 1