From 86b96c166b9925dc6c0048814e25bcb5ae846b0c Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Thu, 8 Mar 2001 18:05:39 +0000 Subject: [PATCH] * psyntax.ss: Added FSF copyright notice. Added a notice of changes in order to comply with paragraph 2a of the GPL. --- ice-9/ChangeLog | 5 +++++ ice-9/psyntax.ss | 25 ++++++++++++++++++++++++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index 8733e6a66..a82952e93 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,8 @@ +2001-03-08 Mikael Djurfeldt + + * psyntax.ss: Added FSF copyright notice. Added a notice of + changes in order to comply with paragraph 2a of the GPL. + 2001-03-07 Neil Jerram * buffered-input.scm (make-line-buffered-input-port): Don't set diff --git a/ice-9/psyntax.ss b/ice-9/psyntax.ss index b49d148e1..608f99f5a 100644 --- a/ice-9/psyntax.ss +++ b/ice-9/psyntax.ss @@ -1,7 +1,31 @@ +;;;; Copyright (C) 2001 Free Software Foundation, Inc. +;;;; +;;;; This program is free software; you can redistribute it and/or modify +;;;; it under the terms of the GNU General Public License as published by +;;;; the Free Software Foundation; either version 2, or (at your option) +;;;; any later version. +;;;; +;;;; This program is distributed in the hope that it will be useful, +;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;;; GNU General Public License for more details. +;;;; +;;;; You should have received a copy of the GNU General Public License +;;;; along with this software; see the file COPYING. If not, write to +;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330, +;;;; Boston, MA 02111-1307 USA +;;;; + + ;;; Portable implementation of syntax-case ;;; Extracted from Chez Scheme Version 5.9f ;;; Authors: R. Kent Dybvig, Oscar Waddell, Bob Hieb, Carl Bruggeman +;;; Modified by Mikael Djurfeldt according +;;; to the ChangeLog distributed in the same directory as this file: +;;; 1997-08-19, 1997-09-03, 1997-09-10, 2000-08-13, 2000-08-24, +;;; 2000-09-12, 2001-03-08 + ;;; Copyright (c) 1992-1997 Cadence Research Systems ;;; Permission to copy this software, in whole or in part, to use this ;;; software for any lawful purpose, and to redistribute this software @@ -13,7 +37,6 @@ ;;; AUTHORS BE LIABLE FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES OF ANY ;;; NATURE WHATSOEVER. - ;;; Before attempting to port this code to a new implementation of ;;; Scheme, please read the notes below carefully.