2012 -> 2013
This commit is contained in:
parent
83766e1b11
commit
79b9acd444
2
README
2
README
|
@ -28,7 +28,7 @@ License
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Racket
|
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
|
Racket is distributed under the GNU Lesser General Public License
|
||||||
(LGPL). This means that you can link Racket into proprietary
|
(LGPL). This means that you can link Racket into proprietary
|
||||||
|
|
|
@ -215,7 +215,7 @@
|
||||||
(list "file")))
|
(list "file")))
|
||||||
|
|
||||||
(when (compiler:option:somewhat-verbose)
|
(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)
|
(short-program+command-name)
|
||||||
(version)
|
(version)
|
||||||
(system-type 'gc)))
|
(system-type 'gc)))
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#lang scheme/base
|
#lang scheme/base
|
||||||
;; Main compilation procedures
|
;; Main compilation procedures
|
||||||
;; (c) 1997-2012 PLT Scheme Inc.
|
;; (c) 1997-2013 PLT Scheme Inc.
|
||||||
|
|
||||||
;; The various procedures provided by this library are implemented
|
;; The various procedures provided by this library are implemented
|
||||||
;; by dynamically linking to code supplied by the MzLib, dynext, and
|
;; by dynamically linking to code supplied by the MzLib, dynext, and
|
||||||
|
|
|
@ -364,7 +364,7 @@
|
||||||
(parse-options (current-command-line-arguments)))
|
(parse-options (current-command-line-arguments)))
|
||||||
|
|
||||||
(when (compiler:option:somewhat-verbose)
|
(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)
|
(version)
|
||||||
(system-type 'gc)))
|
(system-type 'gc)))
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
(provide md5)
|
(provide md5)
|
||||||
|
|
||||||
;;; Copyright (c) 2005-2012, PLT Scheme Inc.
|
;;; Copyright (c) 2005-2013, PLT Scheme Inc.
|
||||||
;;; Copyright (c) 2002, Jens Axel Soegaard
|
;;; Copyright (c) 2002, Jens Axel Soegaard
|
||||||
;;;
|
;;;
|
||||||
;;; Distributed under the same terms as Racket, by permission.
|
;;; Distributed under the same terms as Racket, by permission.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"Racket Widget"
|
"Racket Widget"
|
||||||
"Take a screen shot of a Racket Widget"
|
"Take a screen shot of a Racket Widget"
|
||||||
"Diogo F. S. Ramos"
|
"Diogo F. S. Ramos"
|
||||||
"copyright 2012, Diogo F. S. Ramos"
|
"copyright 2012-2013, Diogo F. S. Ramos"
|
||||||
"August, 2012"
|
"August, 2012"
|
||||||
"")
|
"")
|
||||||
(script-fu-menu-register "script-fu-racket-widget" "<Image>/File/Create")
|
(script-fu-menu-register "script-fu-racket-widget" "<Image>/File/Create")
|
||||||
|
|
|
@ -26,7 +26,7 @@ for more information.
|
||||||
|
|
||||||
@copyright{
|
@copyright{
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2010-2012 PLT Scheme Inc.
|
Copyright (c) 2010-2013 PLT Scheme Inc.
|
||||||
}
|
}
|
||||||
|
|
||||||
Racket software includes or extends the following copyrighted material:
|
Racket software includes or extends the following copyrighted material:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;; sgl -- An OpenGL extension of Racket
|
;; 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 <sowens@cs.utah.edu>
|
;; Copyright (C) 2003-2007 Scott Owens <sowens@cs.utah.edu>
|
||||||
;;
|
;;
|
||||||
;; This library is free software; you can redistribute it and/or
|
;; This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -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.
|
;;; Distributed under the same terms as Racket, by permission.
|
||||||
|
|
||||||
(module vector-lib mzscheme
|
(module vector-lib mzscheme
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;; Implementation of SRFI 63 "Homogeneous and Heterogeneous Arrays" for PLT
|
;; Implementation of SRFI 63 "Homogeneous and Heterogeneous Arrays" for PLT
|
||||||
;; Scheme.
|
;; Scheme.
|
||||||
;; Copyright (C) 2007-2012 Chongkai Zhu
|
;; Copyright (C) 2007-2013 Chongkai Zhu
|
||||||
|
|
||||||
;; Released under the same terms as the SRFI reference implementation.
|
;; Released under the same terms as the SRFI reference implementation.
|
||||||
|
|
||||||
|
|
|
@ -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
|
;; Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
;; copy of this software and associated documentation files (the "Software"),
|
;; copy of this software and associated documentation files (the "Software"),
|
||||||
|
|
|
@ -137,7 +137,7 @@ Swindle environment.
|
||||||
|
|
||||||
====< Copyright Notice >================================================
|
====< 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
|
This library is free software; you can redistribute it and/or modify
|
||||||
it under the terms of the GNU Lesser General Public License as
|
it under the terms of the GNU Lesser General Public License as
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* Purpose: GRacket main file, including a hodge-podge of global stuff
|
* Purpose: GRacket main file, including a hodge-podge of global stuff
|
||||||
* Author: Matthew Flatt
|
* Author: Matthew Flatt
|
||||||
* Created: 1995
|
* Created: 1995
|
||||||
* Copyright: (c) 2004-2012 PLT Scheme Inc.
|
* Copyright: (c) 2004-2013 PLT Scheme Inc.
|
||||||
* Copyright: (c) 1995-2000, Matthew Flatt
|
* Copyright: (c) 1995-2000, Matthew Flatt
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995 Matthew Flatt
|
Copyright (c) 1995 Matthew Flatt
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995 Matthew Flatt
|
Copyright (c) 1995 Matthew Flatt
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2000 Matthew Flatt
|
Copyright (c) 1995-2000 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
SenoraGC, a relatively portable conservative GC for a slightly
|
SenoraGC, a relatively portable conservative GC for a slightly
|
||||||
cooperative environment
|
cooperative environment
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1996-98 Matthew Flatt
|
Copyright (c) 1996-98 Matthew Flatt
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt, Scott Owens
|
Copyright (c) 1995-2001 Matthew Flatt, Scott Owens
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 2000-2001 Matthew Flatt
|
Copyright (c) 2000-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2002 Matthew Flatt
|
Copyright (c) 1995-2002 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
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
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public
|
modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
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
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public
|
modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
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
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public
|
modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
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
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public
|
modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
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
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public
|
modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
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
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public
|
modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
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
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public
|
modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
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
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public
|
modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
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
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public
|
modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 2000-2001 Matthew Flatt
|
Copyright (c) 2000-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
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
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public
|
modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995 Matthew Flatt
|
Copyright (c) 1995 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 2000-2001 Matthew Flatt
|
Copyright (c) 2000-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 2000-2001 Matthew Flatt
|
Copyright (c) 2000-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 2000-2001 Matthew Flatt
|
Copyright (c) 2000-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Mzscheme
|
Mzscheme
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995 Matthew Flatt
|
Copyright (c) 1995 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 2000-2001 Matthew Flatt
|
Copyright (c) 2000-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
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
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Library General Public
|
modify it under the terms of the GNU Library General Public
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 2000-2001 Matthew Flatt
|
Copyright (c) 2000-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* @(#)regexp.c 1.3 of 18 April 87
|
* @(#)regexp.c 1.3 of 18 April 87
|
||||||
* Revised for PLT Racket, 1995-2001
|
* 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.
|
* Copyright (c) 1986 by University of Toronto.
|
||||||
* Written by Henry Spencer. Not derived from licensed software.
|
* Written by Henry Spencer. Not derived from licensed software.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 2000-2001 Matthew Flatt
|
Copyright (c) 2000-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Racket
|
Racket
|
||||||
Copyright (c) 2004-2012 PLT Scheme Inc.
|
Copyright (c) 2004-2013 PLT Scheme Inc.
|
||||||
Copyright (c) 1995-2001 Matthew Flatt
|
Copyright (c) 1995-2001 Matthew Flatt
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
|
|
|
@ -31,7 +31,7 @@ BEGIN
|
||||||
VALUE "FileDescription", "Racket GUI application\0"
|
VALUE "FileDescription", "Racket GUI application\0"
|
||||||
VALUE "InternalName", "GRacket\0"
|
VALUE "InternalName", "GRacket\0"
|
||||||
VALUE "FileVersion", "5, 3, 2, 1\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 "OriginalFilename", "GRacket.exe\0"
|
||||||
VALUE "ProductName", "Racket\0"
|
VALUE "ProductName", "Racket\0"
|
||||||
VALUE "ProductVersion", "5, 3, 2, 1\0"
|
VALUE "ProductVersion", "5, 3, 2, 1\0"
|
||||||
|
|
|
@ -72,7 +72,7 @@ BEGIN
|
||||||
VALUE "FileDescription", "MzCOM Module"
|
VALUE "FileDescription", "MzCOM Module"
|
||||||
VALUE "FileVersion", "5, 3, 2, 1"
|
VALUE "FileVersion", "5, 3, 2, 1"
|
||||||
VALUE "InternalName", "MzCOM"
|
VALUE "InternalName", "MzCOM"
|
||||||
VALUE "LegalCopyright", "Copyright 2000-2012 PLT (Paul Steckler)"
|
VALUE "LegalCopyright", "Copyright 2000-2013 PLT (Paul Steckler)"
|
||||||
VALUE "OriginalFilename", "MzCOM.EXE"
|
VALUE "OriginalFilename", "MzCOM.EXE"
|
||||||
VALUE "ProductName", "MzCOM Module"
|
VALUE "ProductName", "MzCOM Module"
|
||||||
VALUE "ProductVersion", "5, 3, 2, 1"
|
VALUE "ProductVersion", "5, 3, 2, 1"
|
||||||
|
@ -106,10 +106,10 @@ FONT 8, "MS Sans Serif", 0, 0, 0x0
|
||||||
BEGIN
|
BEGIN
|
||||||
DEFPUSHBUTTON "OK",IDOK,76,69,50,14,BS_CENTER
|
DEFPUSHBUTTON "OK",IDOK,76,69,50,14,BS_CENTER
|
||||||
CTEXT "MzCOM v. 5.3",IDC_STATIC,71,8,61,8
|
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
|
41,20,146,9
|
||||||
CTEXT "Racket v. 5.3",IDC_STATIC,64,35,75,8
|
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
|
30,47,143,8
|
||||||
ICON MZICON,IDC_STATIC,11,16,20,20
|
ICON MZICON,IDC_STATIC,11,16,20,20
|
||||||
END
|
END
|
||||||
|
|
|
@ -31,7 +31,7 @@ BEGIN
|
||||||
VALUE "FileDescription", "Racket application\0"
|
VALUE "FileDescription", "Racket application\0"
|
||||||
VALUE "InternalName", "Racket\0"
|
VALUE "InternalName", "Racket\0"
|
||||||
VALUE "FileVersion", "5, 3, 2, 1\0"
|
VALUE "FileVersion", "5, 3, 2, 1\0"
|
||||||
VALUE "LegalCopyright", "Copyright <20>© 1995-2012\0"
|
VALUE "LegalCopyright", "Copyright <20>© 1995-2013\0"
|
||||||
VALUE "OriginalFilename", "racket.exe\0"
|
VALUE "OriginalFilename", "racket.exe\0"
|
||||||
VALUE "ProductName", "Racket\0"
|
VALUE "ProductName", "Racket\0"
|
||||||
VALUE "ProductVersion", "5, 3, 2, 1\0"
|
VALUE "ProductVersion", "5, 3, 2, 1\0"
|
||||||
|
|
|
@ -52,7 +52,7 @@ BEGIN
|
||||||
#ifdef MZSTART
|
#ifdef MZSTART
|
||||||
VALUE "InternalName", "mzstart\0"
|
VALUE "InternalName", "mzstart\0"
|
||||||
#endif
|
#endif
|
||||||
VALUE "LegalCopyright", "Copyright © 1996-2012\0"
|
VALUE "LegalCopyright", "Copyright © 1996-2013\0"
|
||||||
#ifdef MRSTART
|
#ifdef MRSTART
|
||||||
VALUE "OriginalFilename", "MrStart.exe\0"
|
VALUE "OriginalFilename", "MrStart.exe\0"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue
Block a user