diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-03-08 18:58:21 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-03-08 18:58:21 -0500 |
commit | ee0137dc21516d0bb59c3f55e2cdfadfed34707f (patch) | |
tree | 3404dbd5bb20902ffc0f0e7529e94eddc15c02e2 /2d | |
parent | 710663367da30676886a9933d6ccbcfbc79e554c (diff) |
Change license to GPLv3+.
Diffstat (limited to '2d')
-rw-r--r-- | 2d/animation.scm | 16 | ||||
-rw-r--r-- | 2d/audio.scm | 16 | ||||
-rw-r--r-- | 2d/color.scm | 16 | ||||
-rw-r--r-- | 2d/font.scm | 16 | ||||
-rw-r--r-- | 2d/math.scm | 16 | ||||
-rw-r--r-- | 2d/rect.scm | 16 | ||||
-rw-r--r-- | 2d/shader.scm | 17 | ||||
-rw-r--r-- | 2d/signal.scm | 14 | ||||
-rw-r--r-- | 2d/sprite.scm | 16 | ||||
-rw-r--r-- | 2d/texture.scm | 16 | ||||
-rw-r--r-- | 2d/tileset.scm | 16 | ||||
-rw-r--r-- | 2d/transform.scm | 14 | ||||
-rw-r--r-- | 2d/vector2.scm | 16 | ||||
-rw-r--r-- | 2d/window.scm | 16 | ||||
-rw-r--r-- | 2d/wrappers/freeimage.scm | 16 | ||||
-rw-r--r-- | 2d/wrappers/gl.scm | 16 | ||||
-rw-r--r-- | 2d/wrappers/util.scm | 16 |
17 files changed, 143 insertions, 126 deletions
diff --git a/2d/animation.scm b/2d/animation.scm index 07982b0..4998036 100644 --- a/2d/animation.scm +++ b/2d/animation.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/audio.scm b/2d/audio.scm index 034f1b9..0335eee 100644 --- a/2d/audio.scm +++ b/2d/audio.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/color.scm b/2d/color.scm index de9a968..959f1b6 100644 --- a/2d/color.scm +++ b/2d/color.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/font.scm b/2d/font.scm index c09e21b..2ba82f0 100644 --- a/2d/font.scm +++ b/2d/font.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/math.scm b/2d/math.scm index 767e7f6..ba8d88e 100644 --- a/2d/math.scm +++ b/2d/math.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/rect.scm b/2d/rect.scm index 1e84edf..718f69b 100644 --- a/2d/rect.scm +++ b/2d/rect.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/shader.scm b/2d/shader.scm index 89b93fe..deff331 100644 --- a/2d/shader.scm +++ b/2d/shader.scm @@ -1,3 +1,20 @@ +;;; guile-2d +;;; Copyright (C) 2014 David Thompson <dthompson2@worcester.edu> +;;; +;;; 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 3 of the +;;; License, 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 program. If not, see +;;; <http://www.gnu.org/licenses/>. + (define-module (2d shader) #:use-module (system foreign) #:use-module (rnrs bytevectors) diff --git a/2d/signal.scm b/2d/signal.scm index 2833991..f9de20e 100644 --- a/2d/signal.scm +++ b/2d/signal.scm @@ -1,18 +1,18 @@ ;;; guile-2d ;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/sprite.scm b/2d/sprite.scm index e6dd3ae..75a54dc 100644 --- a/2d/sprite.scm +++ b/2d/sprite.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/texture.scm b/2d/texture.scm index e0255ab..aabe884 100644 --- a/2d/texture.scm +++ b/2d/texture.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/tileset.scm b/2d/tileset.scm index e3a97f0..669372b 100644 --- a/2d/tileset.scm +++ b/2d/tileset.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/transform.scm b/2d/transform.scm index f449671..5478770 100644 --- a/2d/transform.scm +++ b/2d/transform.scm @@ -1,18 +1,18 @@ ;;; guile-2d ;;; Copyright (C) 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/vector2.scm b/2d/vector2.scm index 3993fb6..bbbe19f 100644 --- a/2d/vector2.scm +++ b/2d/vector2.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/window.scm b/2d/window.scm index 383076b..75f996b 100644 --- a/2d/window.scm +++ b/2d/window.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/wrappers/freeimage.scm b/2d/wrappers/freeimage.scm index 964eff7..544bf51 100644 --- a/2d/wrappers/freeimage.scm +++ b/2d/wrappers/freeimage.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/wrappers/gl.scm b/2d/wrappers/gl.scm index 0838abc..8e500d4 100644 --- a/2d/wrappers/gl.scm +++ b/2d/wrappers/gl.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: diff --git a/2d/wrappers/util.scm b/2d/wrappers/util.scm index 267cbf5..87cf434 100644 --- a/2d/wrappers/util.scm +++ b/2d/wrappers/util.scm @@ -1,18 +1,18 @@ ;;; guile-2d -;;; Copyright (C) 2013 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu> ;;; -;;; Guile-2d is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as +;;; 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 3 of the ;;; License, or (at your option) any later version. ;;; -;;; Guile-2d is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; 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 -;;; Lesser General Public License for more details. +;;; General Public License for more details. ;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with this program. If not, see +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see ;;; <http://www.gnu.org/licenses/>. ;;; Commentary: |