summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog56
-rw-r--r--arith.c2
-rw-r--r--arith.h2
-rw-r--r--debug.c28
-rw-r--r--debug.h2
-rw-r--r--eval.c2
-rw-r--r--eval.h2
-rw-r--r--filter.c2
-rw-r--r--filter.h2
-rw-r--r--gc.c2
-rw-r--r--gc.h2
-rw-r--r--hash.c2
-rw-r--r--hash.h2
-rw-r--r--lib.c2
-rw-r--r--lib.h2
-rw-r--r--match.c2
-rw-r--r--match.h2
-rw-r--r--parser.h2
-rw-r--r--regex.c2
-rw-r--r--regex.h2
-rw-r--r--stream.c2
-rw-r--r--stream.h2
-rw-r--r--txr.c4
-rw-r--r--txr.h2
-rw-r--r--unwind.c2
-rw-r--r--unwind.h2
-rw-r--r--utf8.c2
-rw-r--r--utf8.h2
28 files changed, 111 insertions, 27 deletions
diff --git a/ChangeLog b/ChangeLog
index 58aacb9b..d131ea71 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,61 @@
2012-02-25 Kaz Kylheku <kaz@kylheku.com>
+ * arith.c: Updated copyright year.
+
+ * arith.h: Likewise.
+
+ * debug.c: Added copyright header.
+
+ * debug.h: Updated copyright year.
+
+ * eval.c: Likewise.
+
+ * eval.h: Likewise.
+
+ * filter.c: Likewise.
+
+ * filter.h: Likewise.
+
+ * gc.c: Likewise.
+
+ * gc.h: Likewise.
+
+ * hash.c: Likewise.
+
+ * hash.h: Likewise.
+
+ * lib.c: Likewise.
+
+ * lib.h: Likewise.
+
+ * match.c: Likewise.
+
+ * match.h: Likewise.
+
+ * parser.h: Likewise.
+
+ * regex.c: Likewise.
+
+ * regex.h: Likewise.
+
+ * stream.c: Likewise.
+
+ * stream.h: Likewise.
+
+ * txr.c: Likewise, and e-mail address.
+
+ * txr.h: Updated copyright year.
+
+ * unwind.c: Likewise.
+
+ * unwind.h: Likewise.
+
+ * utf8.c: Likewise.
+
+ * utf8.h: Likewise.
+
+2012-02-25 Kaz Kylheku <kaz@kylheku.com>
+
* tests/008/filtenv.expected: New file.
* tests/008/filtenv.txr: New file.
diff --git a/arith.c b/arith.c
index 68f8988f..aed631a3 100644
--- a/arith.c
+++ b/arith.c
@@ -1,6 +1,6 @@
/* This file is generated using txr arith.txr > arith.c!
*
- * Copyright 2011
+ * Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/arith.h b/arith.h
index b5ad0472..48d0eefd 100644
--- a/arith.h
+++ b/arith.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/debug.c b/debug.c
index 5aa2728d..0eed79d1 100644
--- a/debug.c
+++ b/debug.c
@@ -1,3 +1,31 @@
+/* This file is generated using txr arith.txr > arith.c!
+ *
+ * Copyright 2012
+ * Kaz Kylheku <kaz@kylheku.com>
+ * Vancouver, Canada
+ * All rights reserved.
+ *
+ * BSD License:
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in
+ * the documentation and/or other materials provided with the
+ * distribution.
+ * 3. The name of the author may not be used to endorse or promote
+ * products derived from this software without specific prior
+ * written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ */
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/debug.h b/debug.h
index a915ce6c..858fc4f4 100644
--- a/debug.h
+++ b/debug.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/eval.c b/eval.c
index 1bfd5817..c0a38ed5 100644
--- a/eval.c
+++ b/eval.c
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/eval.h b/eval.h
index a2f7e177..0ab46d98 100644
--- a/eval.h
+++ b/eval.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/filter.c b/filter.c
index a3b2cb65..9dd07e11 100644
--- a/filter.c
+++ b/filter.c
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/filter.h b/filter.h
index 4eb317d1..a3dcab2f 100644
--- a/filter.h
+++ b/filter.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/gc.c b/gc.c
index 569a1abc..e0697354 100644
--- a/gc.c
+++ b/gc.c
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/gc.h b/gc.h
index 28af2a99..0ca2b20a 100644
--- a/gc.h
+++ b/gc.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/hash.c b/hash.c
index d052c637..f8bba6bd 100644
--- a/hash.c
+++ b/hash.c
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/hash.h b/hash.h
index 5ad73c3b..f4c23cb2 100644
--- a/hash.h
+++ b/hash.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/lib.c b/lib.c
index 657bbb66..edba4f1c 100644
--- a/lib.c
+++ b/lib.c
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/lib.h b/lib.h
index c4bb50e4..3762dacd 100644
--- a/lib.h
+++ b/lib.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/match.c b/match.c
index 855cdd4d..e8fc7f65 100644
--- a/match.c
+++ b/match.c
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/match.h b/match.h
index fe7c4d93..9a69374e 100644
--- a/match.h
+++ b/match.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/parser.h b/parser.h
index e3e77600..9293d8c6 100644
--- a/parser.h
+++ b/parser.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/regex.c b/regex.c
index 700855bd..2ad5a5cb 100644
--- a/regex.c
+++ b/regex.c
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/regex.h b/regex.h
index 57d8fb6b..c983142a 100644
--- a/regex.h
+++ b/regex.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/stream.c b/stream.c
index ed7c05bd..80f12c29 100644
--- a/stream.c
+++ b/stream.c
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/stream.h b/stream.h
index 458c3cac..ba6ef58e 100644
--- a/stream.h
+++ b/stream.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/txr.c b/txr.c
index 82308db0..9dc083a9 100644
--- a/txr.c
+++ b/txr.c
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
@@ -65,7 +65,7 @@ static void help(void)
"\n"
"txr version ~a\n"
"\n"
-"copyright 2011, Kaz Kylheku <kkylheku@gmail.com>\n"
+"copyright 2012, Kaz Kylheku <kaz@kylheku.com>\n"
"\n"
"usage:\n"
"\n"
diff --git a/txr.h b/txr.h
index 293840a1..8f6b7f91 100644
--- a/txr.h
+++ b/txr.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/unwind.c b/unwind.c
index b2ba9e2c..34ef821a 100644
--- a/unwind.c
+++ b/unwind.c
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/unwind.h b/unwind.h
index 307c030f..c963b1ff 100644
--- a/unwind.h
+++ b/unwind.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/utf8.c b/utf8.c
index d61d7073..1d463f06 100644
--- a/utf8.c
+++ b/utf8.c
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.
diff --git a/utf8.h b/utf8.h
index fbb993f1..ce147fb6 100644
--- a/utf8.h
+++ b/utf8.h
@@ -1,4 +1,4 @@
-/* Copyright 2011
+/* Copyright 2012
* Kaz Kylheku <kaz@kylheku.com>
* Vancouver, Canada
* All rights reserved.