aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--jim-posix.c21
-rw-r--r--jim-win32.c2
-rw-r--r--jim-win32com.c2
-rw-r--r--jim.c2
-rw-r--r--jim.h2
-rw-r--r--test.tcl9
7 files changed, 43 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3b019ce..c0f512b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-04 13:15 antirez
+
+ * ChangeLog, Makefile: Added a 'commit' makefile target to generate
+ ChangeLog + cvs commit.
+
2005-03-04 13:12 antirez
* ChangeLog: ChangeLog file added, generated using cvs2cl
diff --git a/jim-posix.c b/jim-posix.c
index 0310159..3e27408 100644
--- a/jim-posix.c
+++ b/jim-posix.c
@@ -1,3 +1,24 @@
+/* Jim - POSIX extension
+ * Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
+ *
+ * $Id: jim-posix.c,v 1.8 2005/03/04 12:32:21 antirez Exp $
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * A copy of the license is also included in the source distribution
+ * of Jim, as a TXT file name called LICENSE.
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
#include <sys/types.h>
#include <unistd.h>
#include <string.h>
diff --git a/jim-win32.c b/jim-win32.c
index b12ee5a..600b4e7 100644
--- a/jim-win32.c
+++ b/jim-win32.c
@@ -2,6 +2,8 @@
*
* Copyright (C) 2005 Pat Thoyts <patthoyts@users.sourceforge.net>
*
+ * $Id: jim-win32.c,v 1.15 2005/03/04 12:32:21 antirez Exp $
+ *
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
diff --git a/jim-win32com.c b/jim-win32com.c
index 34ff17a..338792f 100644
--- a/jim-win32com.c
+++ b/jim-win32com.c
@@ -2,6 +2,8 @@
*
* Windows COM extension.
*
+ * $Id: jim-win32com.c,v 1.13 2005/03/04 12:32:21 antirez Exp $
+ *
* Example:
* load jim-win32com
* set obj [ole32 createobject "SysInfo.SysInfo"]
diff --git a/jim.c b/jim.c
index 23bd5d7..7e2c668 100644
--- a/jim.c
+++ b/jim.c
@@ -1,6 +1,8 @@
/* Jim - A small embeddable Tcl interpreter
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
*
+ * $Id: jim.c,v 1.52 2005/03/04 12:32:21 antirez Exp $
+ *
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
diff --git a/jim.h b/jim.h
index 8c9aabb..34aec05 100644
--- a/jim.h
+++ b/jim.h
@@ -1,6 +1,8 @@
/* Jim - A small embeddable Tcl interpreter
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
*
+ * $Id: jim.h,v 1.31 2005/03/04 12:32:21 antirez Exp $
+ *
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
diff --git a/test.tcl b/test.tcl
index 2118d85..6948243 100644
--- a/test.tcl
+++ b/test.tcl
@@ -1,3 +1,12 @@
+# * $Id: test.tcl,v 1.14 2005/03/04 12:32:21 antirez Exp $
+#
+# This are Tcl tests imported into Jim. Tests that will probably not be passed
+# in the long term are usually removed (for example all the tests about
+# unicode things, about errors in list parsing that are always valid in Jim
+# and so on).
+#
+# Sometimes tests are modified to reflect different error messages.
+
set failedTests 0
set passedTests 0