From 79b9acd4443ae77a6f9bbaf28f9fb0dcc8e8a727 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Wed, 9 Jan 2013 01:17:26 -0500 Subject: [PATCH] 2012 -> 2013 --- README | 2 +- collects/compiler/commands/ctool.rkt | 2 +- collects/compiler/compiler-unit.rkt | 2 +- collects/compiler/main.rkt | 2 +- collects/file/md5.rkt | 2 +- collects/meta/images/taking-screenshots/racket-widget.scm | 2 +- collects/scribblings/main/license.scrbl | 2 +- collects/sgl/sgl.rkt | 2 +- collects/srfi/43/vector-lib.rkt | 2 +- collects/srfi/63/63.rkt | 2 +- collects/srfi/98.rkt | 2 +- collects/swindle/readme.txt | 2 +- src/gracket/grmain.c | 2 +- src/racket/dynsrc/mzdyn.c | 2 +- src/racket/include/escheme.h | 2 +- src/racket/include/scheme.h | 2 +- src/racket/main.c | 2 +- src/racket/sgc/sgc.c | 2 +- src/racket/src/bignum.c | 2 +- src/racket/src/bool.c | 2 +- src/racket/src/builtin.c | 2 +- src/racket/src/char.c | 2 +- src/racket/src/compenv.c | 2 +- src/racket/src/compile.c | 2 +- src/racket/src/complex.c | 2 +- src/racket/src/dynext.c | 2 +- src/racket/src/env.c | 2 +- src/racket/src/error.c | 2 +- src/racket/src/eval.c | 2 +- src/racket/src/file.c | 2 +- src/racket/src/fun.c | 2 +- src/racket/src/future.c | 2 +- src/racket/src/hash.c | 2 +- src/racket/src/jit.c | 2 +- src/racket/src/jitalloc.c | 2 +- src/racket/src/jitarith.c | 2 +- src/racket/src/jitcall.c | 2 +- src/racket/src/jitcommon.c | 2 +- src/racket/src/jitinline.c | 2 +- src/racket/src/jitprep.c | 2 +- src/racket/src/jitstack.c | 2 +- src/racket/src/jitstate.c | 2 +- src/racket/src/list.c | 2 +- src/racket/src/marshal.c | 2 +- src/racket/src/module.c | 2 +- src/racket/src/mzrt.c | 2 +- src/racket/src/mzsj86.c | 2 +- src/racket/src/network.c | 2 +- src/racket/src/numarith.c | 2 +- src/racket/src/number.c | 2 +- src/racket/src/numcomp.c | 2 +- src/racket/src/nummacs.h | 2 +- src/racket/src/numstr.c | 2 +- src/racket/src/optimize.c | 2 +- src/racket/src/place.c | 2 +- src/racket/src/port.c | 2 +- src/racket/src/portfun.c | 2 +- src/racket/src/print.c | 2 +- src/racket/src/rational.c | 2 +- src/racket/src/read.c | 2 +- src/racket/src/regexp.c | 2 +- src/racket/src/resolve.c | 2 +- src/racket/src/salloc.c | 2 +- src/racket/src/schemef.h | 2 +- src/racket/src/schemex.h | 2 +- src/racket/src/schpriv.h | 2 +- src/racket/src/sema.c | 2 +- src/racket/src/setjmpup.c | 2 +- src/racket/src/sfs.c | 2 +- src/racket/src/string.c | 2 +- src/racket/src/struct.c | 2 +- src/racket/src/symbol.c | 2 +- src/racket/src/syntax.c | 2 +- src/racket/src/thread.c | 2 +- src/racket/src/type.c | 2 +- src/racket/src/validate.c | 2 +- src/racket/src/vector.c | 2 +- src/worksp/gracket/gracket.rc | 2 +- src/worksp/mzcom/mzcom.rc | 6 +++--- src/worksp/racket/racket.rc | 2 +- src/worksp/starters/start.rc | 2 +- 81 files changed, 83 insertions(+), 83 deletions(-) diff --git a/README b/README index 3e10346aa0..afc524e191 100644 --- a/README +++ b/README @@ -28,7 +28,7 @@ License ------- Racket -Copyright (c) 2010-2012 PLT Scheme Inc. +Copyright (c) 2010-2013 PLT Scheme Inc. Racket is distributed under the GNU Lesser General Public License (LGPL). This means that you can link Racket into proprietary diff --git a/collects/compiler/commands/ctool.rkt b/collects/compiler/commands/ctool.rkt index 9d50fbed31..0159495acb 100644 --- a/collects/compiler/commands/ctool.rkt +++ b/collects/compiler/commands/ctool.rkt @@ -215,7 +215,7 @@ (list "file"))) (when (compiler:option:somewhat-verbose) - (printf "~a v~a [~a], Copyright (c) 2004-2012 PLT Scheme Inc.\n" + (printf "~a v~a [~a], Copyright (c) 2004-2013 PLT Scheme Inc.\n" (short-program+command-name) (version) (system-type 'gc))) diff --git a/collects/compiler/compiler-unit.rkt b/collects/compiler/compiler-unit.rkt index b5540ebc5f..824067f258 100644 --- a/collects/compiler/compiler-unit.rkt +++ b/collects/compiler/compiler-unit.rkt @@ -1,6 +1,6 @@ #lang scheme/base ;; Main compilation procedures -;; (c) 1997-2012 PLT Scheme Inc. +;; (c) 1997-2013 PLT Scheme Inc. ;; The various procedures provided by this library are implemented ;; by dynamically linking to code supplied by the MzLib, dynext, and diff --git a/collects/compiler/main.rkt b/collects/compiler/main.rkt index 826d291139..70234a2842 100644 --- a/collects/compiler/main.rkt +++ b/collects/compiler/main.rkt @@ -364,7 +364,7 @@ (parse-options (current-command-line-arguments))) (when (compiler:option:somewhat-verbose) - (printf "mzc v~a [~a], Copyright (c) 2004-2012 PLT Scheme Inc.\n" + (printf "mzc v~a [~a], Copyright (c) 2004-2013 PLT Scheme Inc.\n" (version) (system-type 'gc))) diff --git a/collects/file/md5.rkt b/collects/file/md5.rkt index 24a2981b40..876f8b9549 100644 --- a/collects/file/md5.rkt +++ b/collects/file/md5.rkt @@ -2,7 +2,7 @@ (provide md5) -;;; Copyright (c) 2005-2012, PLT Scheme Inc. +;;; Copyright (c) 2005-2013, PLT Scheme Inc. ;;; Copyright (c) 2002, Jens Axel Soegaard ;;; ;;; Distributed under the same terms as Racket, by permission. diff --git a/collects/meta/images/taking-screenshots/racket-widget.scm b/collects/meta/images/taking-screenshots/racket-widget.scm index 1623e55704..9911c52795 100644 --- a/collects/meta/images/taking-screenshots/racket-widget.scm +++ b/collects/meta/images/taking-screenshots/racket-widget.scm @@ -4,7 +4,7 @@ "Racket Widget" "Take a screen shot of a Racket Widget" "Diogo F. S. Ramos" - "copyright 2012, Diogo F. S. Ramos" + "copyright 2012-2013, Diogo F. S. Ramos" "August, 2012" "") (script-fu-menu-register "script-fu-racket-widget" "/File/Create") diff --git a/collects/scribblings/main/license.scrbl b/collects/scribblings/main/license.scrbl index 0a16e82503..2c7c7d0ac6 100644 --- a/collects/scribblings/main/license.scrbl +++ b/collects/scribblings/main/license.scrbl @@ -26,7 +26,7 @@ for more information. @copyright{ Racket - Copyright (c) 2010-2012 PLT Scheme Inc. + Copyright (c) 2010-2013 PLT Scheme Inc. } Racket software includes or extends the following copyrighted material: diff --git a/collects/sgl/sgl.rkt b/collects/sgl/sgl.rkt index b756c0eadf..c58434f65f 100644 --- a/collects/sgl/sgl.rkt +++ b/collects/sgl/sgl.rkt @@ -1,6 +1,6 @@ ;; sgl -- An OpenGL extension of Racket ;; -;; Copyright (C) 2007-2012 PLT Scheme Inc. +;; Copyright (C) 2007-2013 PLT Scheme Inc. ;; Copyright (C) 2003-2007 Scott Owens ;; ;; This library is free software; you can redistribute it and/or diff --git a/collects/srfi/43/vector-lib.rkt b/collects/srfi/43/vector-lib.rkt index ba38e923aa..50cf806945 100644 --- a/collects/srfi/43/vector-lib.rkt +++ b/collects/srfi/43/vector-lib.rkt @@ -1,4 +1,4 @@ -;;; Copyright (C) 2005-2012 by Chongkai Zhu. +;;; Copyright (C) 2005-2013 by Chongkai Zhu. ;;; Distributed under the same terms as Racket, by permission. (module vector-lib mzscheme diff --git a/collects/srfi/63/63.rkt b/collects/srfi/63/63.rkt index ffafa95cdb..0d266075f4 100644 --- a/collects/srfi/63/63.rkt +++ b/collects/srfi/63/63.rkt @@ -1,6 +1,6 @@ ;; Implementation of SRFI 63 "Homogeneous and Heterogeneous Arrays" for PLT ;; Scheme. -;; Copyright (C) 2007-2012 Chongkai Zhu +;; Copyright (C) 2007-2013 Chongkai Zhu ;; Released under the same terms as the SRFI reference implementation. diff --git a/collects/srfi/98.rkt b/collects/srfi/98.rkt index 2dd8977456..aa3e99fa46 100644 --- a/collects/srfi/98.rkt +++ b/collects/srfi/98.rkt @@ -1,4 +1,4 @@ -;; Copyright (c) 2009-2012 Derick Eddington. All rights reserved. +;; Copyright (c) 2009-2013 Derick Eddington. All rights reserved. ;; Permission is hereby granted, free of charge, to any person obtaining a ;; copy of this software and associated documentation files (the "Software"), diff --git a/collects/swindle/readme.txt b/collects/swindle/readme.txt index be5e0b14ee..93aedaa79f 100644 --- a/collects/swindle/readme.txt +++ b/collects/swindle/readme.txt @@ -137,7 +137,7 @@ Swindle environment. ====< Copyright Notice >================================================ -Copyright (C) 1998-2012 Eli Barzilay (eli@barzilay.org) +Copyright (C) 1998-2013 Eli Barzilay (eli@barzilay.org) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as diff --git a/src/gracket/grmain.c b/src/gracket/grmain.c index 7b04d12e12..261eaf13ba 100644 --- a/src/gracket/grmain.c +++ b/src/gracket/grmain.c @@ -3,7 +3,7 @@ * Purpose: GRacket main file, including a hodge-podge of global stuff * Author: Matthew Flatt * Created: 1995 - * Copyright: (c) 2004-2012 PLT Scheme Inc. + * Copyright: (c) 2004-2013 PLT Scheme Inc. * Copyright: (c) 1995-2000, Matthew Flatt */ diff --git a/src/racket/dynsrc/mzdyn.c b/src/racket/dynsrc/mzdyn.c index 91409ba074..96c2e14ea6 100644 --- a/src/racket/dynsrc/mzdyn.c +++ b/src/racket/dynsrc/mzdyn.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995 Matthew Flatt All rights reserved. diff --git a/src/racket/include/escheme.h b/src/racket/include/escheme.h index 5a447632ee..4ab7014e54 100644 --- a/src/racket/include/escheme.h +++ b/src/racket/include/escheme.h @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995 Matthew Flatt All rights reserved. diff --git a/src/racket/include/scheme.h b/src/racket/include/scheme.h index 63b0144925..4344036d56 100644 --- a/src/racket/include/scheme.h +++ b/src/racket/include/scheme.h @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt All rights reserved. diff --git a/src/racket/main.c b/src/racket/main.c index 31d9cc3497..d0a7d6fd23 100644 --- a/src/racket/main.c +++ b/src/racket/main.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2000 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/sgc/sgc.c b/src/racket/sgc/sgc.c index d8baf65c1f..e2fe764df6 100644 --- a/src/racket/sgc/sgc.c +++ b/src/racket/sgc/sgc.c @@ -1,7 +1,7 @@ /* SenoraGC, a relatively portable conservative GC for a slightly cooperative environment - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1996-98 Matthew Flatt All rights reserved. diff --git a/src/racket/src/bignum.c b/src/racket/src/bignum.c index 69727ed8ac..4191844b09 100644 --- a/src/racket/src/bignum.c +++ b/src/racket/src/bignum.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt, Scott Owens This library is free software; you can redistribute it and/or diff --git a/src/racket/src/bool.c b/src/racket/src/bool.c index 4b3aa3ce26..20f3c7161e 100644 --- a/src/racket/src/bool.c +++ b/src/racket/src/bool.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/builtin.c b/src/racket/src/builtin.c index 84d34581e1..283c4d356a 100644 --- a/src/racket/src/builtin.c +++ b/src/racket/src/builtin.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 2000-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/char.c b/src/racket/src/char.c index 32c2e48e86..7a422995d5 100644 --- a/src/racket/src/char.c +++ b/src/racket/src/char.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/compenv.c b/src/racket/src/compenv.c index 9d6cff2ce3..e0057606bc 100644 --- a/src/racket/src/compenv.c +++ b/src/racket/src/compenv.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/compile.c b/src/racket/src/compile.c index d3cbf4481c..74e44d1901 100644 --- a/src/racket/src/compile.c +++ b/src/racket/src/compile.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/complex.c b/src/racket/src/complex.c index 686b232f44..163eaf735a 100644 --- a/src/racket/src/complex.c +++ b/src/racket/src/complex.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/dynext.c b/src/racket/src/dynext.c index d5891d5906..e3f0cce874 100644 --- a/src/racket/src/dynext.c +++ b/src/racket/src/dynext.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2002 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/env.c b/src/racket/src/env.c index 410fcb3be8..2f63e69281 100644 --- a/src/racket/src/env.c +++ b/src/racket/src/env.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/error.c b/src/racket/src/error.c index e9ba62f123..f0acdc5141 100644 --- a/src/racket/src/error.c +++ b/src/racket/src/error.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/eval.c b/src/racket/src/eval.c index f2d490b077..aa269a8dc9 100644 --- a/src/racket/src/eval.c +++ b/src/racket/src/eval.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/file.c b/src/racket/src/file.c index 7dfb875afa..850b6af4d6 100644 --- a/src/racket/src/file.c +++ b/src/racket/src/file.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/fun.c b/src/racket/src/fun.c index 1e46f822b8..6eedeac953 100644 --- a/src/racket/src/fun.c +++ b/src/racket/src/fun.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/future.c b/src/racket/src/future.c index b8a9332b67..277dfe57b4 100644 --- a/src/racket/src/future.c +++ b/src/racket/src/future.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2006-2012 PLT Scheme Inc. + Copyright (c) 2006-2013 PLT Scheme Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/racket/src/hash.c b/src/racket/src/hash.c index 58ebf57d30..b0bd8aebea 100644 --- a/src/racket/src/hash.c +++ b/src/racket/src/hash.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/jit.c b/src/racket/src/jit.c index 075c9873e2..8d95406a5f 100644 --- a/src/racket/src/jit.c +++ b/src/racket/src/jit.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2006-2012 PLT Scheme Inc. + Copyright (c) 2006-2013 PLT Scheme Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/racket/src/jitalloc.c b/src/racket/src/jitalloc.c index aa6876d651..d989c83930 100644 --- a/src/racket/src/jitalloc.c +++ b/src/racket/src/jitalloc.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2006-2012 PLT Scheme Inc. + Copyright (c) 2006-2013 PLT Scheme Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/racket/src/jitarith.c b/src/racket/src/jitarith.c index 928e7b84fb..33b70f2a87 100644 --- a/src/racket/src/jitarith.c +++ b/src/racket/src/jitarith.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2006-2012 PLT Scheme Inc. + Copyright (c) 2006-2013 PLT Scheme Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/racket/src/jitcall.c b/src/racket/src/jitcall.c index 9ca5e34c65..84be4f296a 100644 --- a/src/racket/src/jitcall.c +++ b/src/racket/src/jitcall.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2006-2012 PLT Scheme Inc. + Copyright (c) 2006-2013 PLT Scheme Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/racket/src/jitcommon.c b/src/racket/src/jitcommon.c index 17ee2455a9..2b6f05b985 100644 --- a/src/racket/src/jitcommon.c +++ b/src/racket/src/jitcommon.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2006-2012 PLT Scheme Inc. + Copyright (c) 2006-2013 PLT Scheme Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/racket/src/jitinline.c b/src/racket/src/jitinline.c index 5c3cf13a02..774de4acca 100644 --- a/src/racket/src/jitinline.c +++ b/src/racket/src/jitinline.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2006-2012 PLT Scheme Inc. + Copyright (c) 2006-2013 PLT Scheme Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/racket/src/jitprep.c b/src/racket/src/jitprep.c index 3de148bc0e..75cf6b029b 100644 --- a/src/racket/src/jitprep.c +++ b/src/racket/src/jitprep.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/jitstack.c b/src/racket/src/jitstack.c index 3dc65dc9e1..d8b29ef66d 100644 --- a/src/racket/src/jitstack.c +++ b/src/racket/src/jitstack.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2006-2012 PLT Scheme Inc. + Copyright (c) 2006-2013 PLT Scheme Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/racket/src/jitstate.c b/src/racket/src/jitstate.c index ca513f6ff9..c24d0439f9 100644 --- a/src/racket/src/jitstate.c +++ b/src/racket/src/jitstate.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2006-2012 PLT Scheme Inc. + Copyright (c) 2006-2013 PLT Scheme Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/racket/src/list.c b/src/racket/src/list.c index 253c1420ef..c2554f49b6 100644 --- a/src/racket/src/list.c +++ b/src/racket/src/list.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/marshal.c b/src/racket/src/marshal.c index 6a43ac00c7..87c548db15 100644 --- a/src/racket/src/marshal.c +++ b/src/racket/src/marshal.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/module.c b/src/racket/src/module.c index 5369bea095..29fd483907 100644 --- a/src/racket/src/module.c +++ b/src/racket/src/module.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 2000-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/mzrt.c b/src/racket/src/mzrt.c index 5c8351895d..98664d81b5 100644 --- a/src/racket/src/mzrt.c +++ b/src/racket/src/mzrt.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2009-2012 PLT Scheme Inc. + Copyright (c) 2009-2013 PLT Scheme Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/racket/src/mzsj86.c b/src/racket/src/mzsj86.c index 1aea9964fd..74490a67c2 100644 --- a/src/racket/src/mzsj86.c +++ b/src/racket/src/mzsj86.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/network.c b/src/racket/src/network.c index 751dad8197..af9252e350 100644 --- a/src/racket/src/network.c +++ b/src/racket/src/network.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 2000-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/numarith.c b/src/racket/src/numarith.c index e7021056d5..edb968171c 100644 --- a/src/racket/src/numarith.c +++ b/src/racket/src/numarith.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 2000-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/number.c b/src/racket/src/number.c index d10ff08c84..6c774bde07 100644 --- a/src/racket/src/number.c +++ b/src/racket/src/number.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/numcomp.c b/src/racket/src/numcomp.c index 2bbe9af856..4a64b9beb7 100644 --- a/src/racket/src/numcomp.c +++ b/src/racket/src/numcomp.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 2000-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/nummacs.h b/src/racket/src/nummacs.h index 46e2567412..c5e369b69f 100644 --- a/src/racket/src/nummacs.h +++ b/src/racket/src/nummacs.h @@ -1,6 +1,6 @@ /* Mzscheme - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/numstr.c b/src/racket/src/numstr.c index 8d840095fd..4b218ce591 100644 --- a/src/racket/src/numstr.c +++ b/src/racket/src/numstr.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 2000-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/optimize.c b/src/racket/src/optimize.c index b9bb81033d..a0c336233b 100644 --- a/src/racket/src/optimize.c +++ b/src/racket/src/optimize.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/place.c b/src/racket/src/place.c index 196e58f39c..83e0e88d05 100644 --- a/src/racket/src/place.c +++ b/src/racket/src/place.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2009-2012 PLT Scheme Inc. + Copyright (c) 2009-2013 PLT Scheme Inc. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/src/racket/src/port.c b/src/racket/src/port.c index c68707a356..d5530927bd 100644 --- a/src/racket/src/port.c +++ b/src/racket/src/port.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/portfun.c b/src/racket/src/portfun.c index 4b124e6f89..25ce7c98e5 100644 --- a/src/racket/src/portfun.c +++ b/src/racket/src/portfun.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 2000-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/print.c b/src/racket/src/print.c index 28a6b9bcea..e19b582957 100644 --- a/src/racket/src/print.c +++ b/src/racket/src/print.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/rational.c b/src/racket/src/rational.c index 7374283b78..f41eb64939 100644 --- a/src/racket/src/rational.c +++ b/src/racket/src/rational.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/read.c b/src/racket/src/read.c index f4f88d4b09..3391c72d4f 100644 --- a/src/racket/src/read.c +++ b/src/racket/src/read.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/regexp.c b/src/racket/src/regexp.c index d12e7c6144..660fa085df 100644 --- a/src/racket/src/regexp.c +++ b/src/racket/src/regexp.c @@ -1,7 +1,7 @@ /* * @(#)regexp.c 1.3 of 18 April 87 * Revised for PLT Racket, 1995-2001 - * Copyright (c) 2004-2012 PLT Scheme Inc. + * Copyright (c) 2004-2013 PLT Scheme Inc. * * Copyright (c) 1986 by University of Toronto. * Written by Henry Spencer. Not derived from licensed software. diff --git a/src/racket/src/resolve.c b/src/racket/src/resolve.c index 5fdedd2382..92daaec606 100644 --- a/src/racket/src/resolve.c +++ b/src/racket/src/resolve.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/salloc.c b/src/racket/src/salloc.c index d896caab21..5a62612708 100644 --- a/src/racket/src/salloc.c +++ b/src/racket/src/salloc.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/schemef.h b/src/racket/src/schemef.h index cb558a099f..fc85f600a5 100644 --- a/src/racket/src/schemef.h +++ b/src/racket/src/schemef.h @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt All rights reserved. diff --git a/src/racket/src/schemex.h b/src/racket/src/schemex.h index dd9b494fc2..71875446c3 100644 --- a/src/racket/src/schemex.h +++ b/src/racket/src/schemex.h @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt All rights reserved. diff --git a/src/racket/src/schpriv.h b/src/racket/src/schpriv.h index 8459aa24fd..deb664edc2 100644 --- a/src/racket/src/schpriv.h +++ b/src/racket/src/schpriv.h @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt All rights reserved. diff --git a/src/racket/src/sema.c b/src/racket/src/sema.c index 98219a3dff..c4303bc610 100644 --- a/src/racket/src/sema.c +++ b/src/racket/src/sema.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/setjmpup.c b/src/racket/src/setjmpup.c index 23741345df..861e6a71a8 100644 --- a/src/racket/src/setjmpup.c +++ b/src/racket/src/setjmpup.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/sfs.c b/src/racket/src/sfs.c index 7203f89a7d..98c942d844 100644 --- a/src/racket/src/sfs.c +++ b/src/racket/src/sfs.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/string.c b/src/racket/src/string.c index 839a70dc17..23dcad8bdb 100644 --- a/src/racket/src/string.c +++ b/src/racket/src/string.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/struct.c b/src/racket/src/struct.c index 5debdee3c9..0842f06ec3 100644 --- a/src/racket/src/struct.c +++ b/src/racket/src/struct.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/symbol.c b/src/racket/src/symbol.c index c7400f1919..5ec7963951 100644 --- a/src/racket/src/symbol.c +++ b/src/racket/src/symbol.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/syntax.c b/src/racket/src/syntax.c index 6559ba94a9..a6af784fff 100644 --- a/src/racket/src/syntax.c +++ b/src/racket/src/syntax.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 2000-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/thread.c b/src/racket/src/thread.c index de46b29545..5db40fcd4b 100644 --- a/src/racket/src/thread.c +++ b/src/racket/src/thread.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/type.c b/src/racket/src/type.c index c23e09fce1..2e5f876b23 100644 --- a/src/racket/src/type.c +++ b/src/racket/src/type.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/validate.c b/src/racket/src/validate.c index ac2019109b..a8be0292ed 100644 --- a/src/racket/src/validate.c +++ b/src/racket/src/validate.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/racket/src/vector.c b/src/racket/src/vector.c index 2877a20bf3..565ab2bd38 100644 --- a/src/racket/src/vector.c +++ b/src/racket/src/vector.c @@ -1,6 +1,6 @@ /* Racket - Copyright (c) 2004-2012 PLT Scheme Inc. + Copyright (c) 2004-2013 PLT Scheme Inc. Copyright (c) 1995-2001 Matthew Flatt This library is free software; you can redistribute it and/or diff --git a/src/worksp/gracket/gracket.rc b/src/worksp/gracket/gracket.rc index 63237645ca..0111575689 100644 --- a/src/worksp/gracket/gracket.rc +++ b/src/worksp/gracket/gracket.rc @@ -31,7 +31,7 @@ BEGIN VALUE "FileDescription", "Racket GUI application\0" VALUE "InternalName", "GRacket\0" VALUE "FileVersion", "5, 3, 2, 1\0" - VALUE "LegalCopyright", "Copyright 1995-2012\0" + VALUE "LegalCopyright", "Copyright 1995-2013\0" VALUE "OriginalFilename", "GRacket.exe\0" VALUE "ProductName", "Racket\0" VALUE "ProductVersion", "5, 3, 2, 1\0" diff --git a/src/worksp/mzcom/mzcom.rc b/src/worksp/mzcom/mzcom.rc index c09ef455bc..cc903beeb7 100644 --- a/src/worksp/mzcom/mzcom.rc +++ b/src/worksp/mzcom/mzcom.rc @@ -72,7 +72,7 @@ BEGIN VALUE "FileDescription", "MzCOM Module" VALUE "FileVersion", "5, 3, 2, 1" VALUE "InternalName", "MzCOM" - VALUE "LegalCopyright", "Copyright 2000-2012 PLT (Paul Steckler)" + VALUE "LegalCopyright", "Copyright 2000-2013 PLT (Paul Steckler)" VALUE "OriginalFilename", "MzCOM.EXE" VALUE "ProductName", "MzCOM Module" VALUE "ProductVersion", "5, 3, 2, 1" @@ -106,10 +106,10 @@ FONT 8, "MS Sans Serif", 0, 0, 0x0 BEGIN DEFPUSHBUTTON "OK",IDOK,76,69,50,14,BS_CENTER CTEXT "MzCOM v. 5.3",IDC_STATIC,71,8,61,8 - CTEXT "Copyright (c) 2000-2012 PLT (Paul Steckler)",IDC_STATIC, + CTEXT "Copyright (c) 2000-2013 PLT (Paul Steckler)",IDC_STATIC, 41,20,146,9 CTEXT "Racket v. 5.3",IDC_STATIC,64,35,75,8 - CTEXT "Copyright (c) 1995-2012 PLT Inc.",IDC_STATIC, + CTEXT "Copyright (c) 1995-2013 PLT Inc.",IDC_STATIC, 30,47,143,8 ICON MZICON,IDC_STATIC,11,16,20,20 END diff --git a/src/worksp/racket/racket.rc b/src/worksp/racket/racket.rc index 75beebb50c..324138558a 100644 --- a/src/worksp/racket/racket.rc +++ b/src/worksp/racket/racket.rc @@ -31,7 +31,7 @@ BEGIN VALUE "FileDescription", "Racket application\0" VALUE "InternalName", "Racket\0" VALUE "FileVersion", "5, 3, 2, 1\0" - VALUE "LegalCopyright", "Copyright 1995-2012\0" + VALUE "LegalCopyright", "Copyright 1995-2013\0" VALUE "OriginalFilename", "racket.exe\0" VALUE "ProductName", "Racket\0" VALUE "ProductVersion", "5, 3, 2, 1\0" diff --git a/src/worksp/starters/start.rc b/src/worksp/starters/start.rc index 0f39083c1e..716dd9cf1c 100644 --- a/src/worksp/starters/start.rc +++ b/src/worksp/starters/start.rc @@ -52,7 +52,7 @@ BEGIN #ifdef MZSTART VALUE "InternalName", "mzstart\0" #endif - VALUE "LegalCopyright", "Copyright 1996-2012\0" + VALUE "LegalCopyright", "Copyright 1996-2013\0" #ifdef MRSTART VALUE "OriginalFilename", "MrStart.exe\0" #endif