aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchi <chi>2005-03-21 17:04:38 +0000
committerchi <chi>2005-03-21 17:04:38 +0000
commit50e02e9f6b192f2d12e55f1eb56152674e4e822c (patch)
treebcc1f518c1b8dd28071f16b2e0855f64ac50d81d
parent28c3361d618f6ad15528fffdbfe3bee0fec8f790 (diff)
downloadjimtcl-50e02e9f6b192f2d12e55f1eb56152674e4e822c.zip
jimtcl-50e02e9f6b192f2d12e55f1eb56152674e4e822c.tar.gz
jimtcl-50e02e9f6b192f2d12e55f1eb56152674e4e822c.tar.bz2
Add copyright notice within jim.c & jim.h to acknowledge Jim's license.
-rw-r--r--jim.c5
-rw-r--r--jim.h3
2 files changed, 5 insertions, 3 deletions
diff --git a/jim.c b/jim.c
index e5a8c87..9767de1 100644
--- a/jim.c
+++ b/jim.c
@@ -1,7 +1,8 @@
/* Jim - A small embeddable Tcl interpreter
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
+ * Copyright 2005 Clemens Hintze <c.hintze@gmx.net>
*
- * $Id: jim.c,v 1.124 2005/03/21 12:39:36 antirez Exp $
+ * $Id: jim.c,v 1.125 2005/03/21 17:04:38 chi Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -10709,7 +10710,7 @@ int Jim_InteractivePrompt(Jim_Interp *interp)
printf("Welcome to Jim version %d.%d, "
"Copyright (c) 2005 Salvatore Sanfilippo\n",
JIM_VERSION / 100, JIM_VERSION % 100);
- printf("CVS ID: $Id: jim.c,v 1.124 2005/03/21 12:39:36 antirez Exp $\n");
+ printf("CVS ID: $Id: jim.c,v 1.125 2005/03/21 17:04:38 chi Exp $\n");
Jim_SetVariableStrWithStr(interp, "jim_interactive", "1");
while (1) {
char buf[1024];
diff --git a/jim.h b/jim.h
index aeb914e..8a49cf0 100644
--- a/jim.h
+++ b/jim.h
@@ -1,7 +1,8 @@
/* Jim - A small embeddable Tcl interpreter
* Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
+ * Copyright 2005 Clemens Hintze <c.hintze@gmx.net>
*
- * $Id: jim.h,v 1.62 2005/03/21 11:59:44 chi Exp $
+ * $Id: jim.h,v 1.63 2005/03/21 17:04:38 chi Exp $
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.