mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-16 08:40:19 +02:00
*** empty log message ***
This commit is contained in:
parent
c22adbeb3b
commit
f480396be5
14 changed files with 284 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
|
Added exception notice to all files.
|
||||||
|
|
||||||
|
* boot-9.scm (module-export!): Revert 2001-06-02 change. It
|
||||||
|
caused more problems than it solved by accidentally re-exporting
|
||||||
|
importing bindings once in a while.
|
||||||
|
|
||||||
2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
|
2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
* boot-9.scm (try-load-module): Bracket calls to try-module-linked
|
* boot-9.scm (try-load-module): Bracket calls to try-module-linked
|
||||||
|
@ -9,6 +17,8 @@
|
||||||
try-using-sharlib-name, link-dynamic-module, try-module-linked,
|
try-using-sharlib-name, link-dynamic-module, try-module-linked,
|
||||||
try-module-dynamic-link): Deprecated. Activate deprecation
|
try-module-dynamic-link): Deprecated. Activate deprecation
|
||||||
message.
|
message.
|
||||||
|
(define-public): Define binding before exporting it. This is to
|
||||||
|
avoid accidentally re-exporting a imported binding.
|
||||||
|
|
||||||
2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
|
2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
2001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
|
Added exception notice to all files.
|
||||||
|
|
||||||
|
* dynl.c: Include "deprecation.h".
|
||||||
|
|
||||||
2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
|
2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
* dynl.c (scm_register_module_xxx, scm_registered_modules,
|
* dynl.c (scm_register_module_xxx, scm_registered_modules,
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
|
||||||
|
|
||||||
|
Added exception notice to all files.
|
||||||
|
|
||||||
2001-05-31 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
|
2001-05-31 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
|
||||||
|
|
||||||
* srfi-14.scm, srfi-13.scm: Use `load-extension' for loading the
|
* srfi-14.scm, srfi-13.scm: Use `load-extension' for loading the
|
||||||
|
|
|
@ -16,6 +16,30 @@
|
||||||
;;;; along with this software; see the file COPYING. If not, write to
|
;;;; along with this software; see the file COPYING. If not, write to
|
||||||
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
;;;; Boston, MA 02111-1307 USA
|
;;;; Boston, MA 02111-1307 USA
|
||||||
|
;;;;
|
||||||
|
;;;; As a special exception, the Free Software Foundation gives permission
|
||||||
|
;;;; for additional uses of the text contained in its release of GUILE.
|
||||||
|
;;;;
|
||||||
|
;;;; The exception is that, if you link the GUILE library with other files
|
||||||
|
;;;; to produce an executable, this does not by itself cause the
|
||||||
|
;;;; resulting executable to be covered by the GNU General Public License.
|
||||||
|
;;;; Your use of that executable is in no way restricted on account of
|
||||||
|
;;;; linking the GUILE library code into it.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception does not however invalidate any other reasons why
|
||||||
|
;;;; the executable file might be covered by the GNU General Public License.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception applies only to the code released by the
|
||||||
|
;;;; Free Software Foundation under the name GUILE. If you copy
|
||||||
|
;;;; code from other Free Software Foundation releases into a copy of
|
||||||
|
;;;; GUILE, as the General Public License permits, the exception does
|
||||||
|
;;;; not apply to the code that you add in this way. To avoid misleading
|
||||||
|
;;;; anyone as to the status of such modified files, you must delete
|
||||||
|
;;;; this exception notice from them.
|
||||||
|
;;;;
|
||||||
|
;;;; If you write modifications of your own for GUILE, it is your choice
|
||||||
|
;;;; whether to permit this exception to apply to your modifications.
|
||||||
|
;;;; If you do not wish that, delete this exception notice.
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,30 @@
|
||||||
;;; along with this software; see the file COPYING. If not, write to
|
;;; along with this software; see the file COPYING. If not, write to
|
||||||
;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
;;; Boston, MA 02111-1307 USA
|
;;; Boston, MA 02111-1307 USA
|
||||||
|
;;;
|
||||||
|
;;; As a special exception, the Free Software Foundation gives permission
|
||||||
|
;;; for additional uses of the text contained in its release of GUILE.
|
||||||
|
;;;
|
||||||
|
;;; The exception is that, if you link the GUILE library with other files
|
||||||
|
;;; to produce an executable, this does not by itself cause the
|
||||||
|
;;; resulting executable to be covered by the GNU General Public License.
|
||||||
|
;;; Your use of that executable is in no way restricted on account of
|
||||||
|
;;; linking the GUILE library code into it.
|
||||||
|
;;;
|
||||||
|
;;; This exception does not however invalidate any other reasons why
|
||||||
|
;;; the executable file might be covered by the GNU General Public License.
|
||||||
|
;;;
|
||||||
|
;;; This exception applies only to the code released by the
|
||||||
|
;;; Free Software Foundation under the name GUILE. If you copy
|
||||||
|
;;; code from other Free Software Foundation releases into a copy of
|
||||||
|
;;; GUILE, as the General Public License permits, the exception does
|
||||||
|
;;; not apply to the code that you add in this way. To avoid misleading
|
||||||
|
;;; anyone as to the status of such modified files, you must delete
|
||||||
|
;;; this exception notice from them.
|
||||||
|
;;;
|
||||||
|
;;; If you write modifications of your own for GUILE, it is your choice
|
||||||
|
;;; whether to permit this exception to apply to your modifications.
|
||||||
|
;;; If you do not wish that, delete this exception notice.
|
||||||
|
|
||||||
(define-module (srfi srfi-11)
|
(define-module (srfi srfi-11)
|
||||||
:use-module (ice-9 syncase))
|
:use-module (ice-9 syncase))
|
||||||
|
|
|
@ -16,6 +16,30 @@
|
||||||
;;;; along with this software; see the file COPYING. If not, write to
|
;;;; along with this software; see the file COPYING. If not, write to
|
||||||
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
;;;; Boston, MA 02111-1307 USA
|
;;;; Boston, MA 02111-1307 USA
|
||||||
|
;;;;
|
||||||
|
;;;; As a special exception, the Free Software Foundation gives permission
|
||||||
|
;;;; for additional uses of the text contained in its release of GUILE.
|
||||||
|
;;;;
|
||||||
|
;;;; The exception is that, if you link the GUILE library with other files
|
||||||
|
;;;; to produce an executable, this does not by itself cause the
|
||||||
|
;;;; resulting executable to be covered by the GNU General Public License.
|
||||||
|
;;;; Your use of that executable is in no way restricted on account of
|
||||||
|
;;;; linking the GUILE library code into it.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception does not however invalidate any other reasons why
|
||||||
|
;;;; the executable file might be covered by the GNU General Public License.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception applies only to the code released by the
|
||||||
|
;;;; Free Software Foundation under the name GUILE. If you copy
|
||||||
|
;;;; code from other Free Software Foundation releases into a copy of
|
||||||
|
;;;; GUILE, as the General Public License permits, the exception does
|
||||||
|
;;;; not apply to the code that you add in this way. To avoid misleading
|
||||||
|
;;;; anyone as to the status of such modified files, you must delete
|
||||||
|
;;;; this exception notice from them.
|
||||||
|
;;;;
|
||||||
|
;;;; If you write modifications of your own for GUILE, it is your choice
|
||||||
|
;;;; whether to permit this exception to apply to your modifications.
|
||||||
|
;;;; If you do not wish that, delete this exception notice.
|
||||||
|
|
||||||
(define-module (srfi srfi-13))
|
(define-module (srfi srfi-13))
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,30 @@
|
||||||
;;;; along with this software; see the file COPYING. If not, write to
|
;;;; along with this software; see the file COPYING. If not, write to
|
||||||
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
;;;; Boston, MA 02111-1307 USA
|
;;;; Boston, MA 02111-1307 USA
|
||||||
|
;;;;
|
||||||
|
;;;; As a special exception, the Free Software Foundation gives permission
|
||||||
|
;;;; for additional uses of the text contained in its release of GUILE.
|
||||||
|
;;;;
|
||||||
|
;;;; The exception is that, if you link the GUILE library with other files
|
||||||
|
;;;; to produce an executable, this does not by itself cause the
|
||||||
|
;;;; resulting executable to be covered by the GNU General Public License.
|
||||||
|
;;;; Your use of that executable is in no way restricted on account of
|
||||||
|
;;;; linking the GUILE library code into it.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception does not however invalidate any other reasons why
|
||||||
|
;;;; the executable file might be covered by the GNU General Public License.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception applies only to the code released by the
|
||||||
|
;;;; Free Software Foundation under the name GUILE. If you copy
|
||||||
|
;;;; code from other Free Software Foundation releases into a copy of
|
||||||
|
;;;; GUILE, as the General Public License permits, the exception does
|
||||||
|
;;;; not apply to the code that you add in this way. To avoid misleading
|
||||||
|
;;;; anyone as to the status of such modified files, you must delete
|
||||||
|
;;;; this exception notice from them.
|
||||||
|
;;;;
|
||||||
|
;;;; If you write modifications of your own for GUILE, it is your choice
|
||||||
|
;;;; whether to permit this exception to apply to your modifications.
|
||||||
|
;;;; If you do not wish that, delete this exception notice.
|
||||||
|
|
||||||
(define-module (srfi srfi-14))
|
(define-module (srfi srfi-14))
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,30 @@
|
||||||
;;; along with this software; see the file COPYING. If not, write to
|
;;; along with this software; see the file COPYING. If not, write to
|
||||||
;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
;;; Boston, MA 02111-1307 USA
|
;;; Boston, MA 02111-1307 USA
|
||||||
|
;;;
|
||||||
|
;;; As a special exception, the Free Software Foundation gives permission
|
||||||
|
;;; for additional uses of the text contained in its release of GUILE.
|
||||||
|
;;;
|
||||||
|
;;; The exception is that, if you link the GUILE library with other files
|
||||||
|
;;; to produce an executable, this does not by itself cause the
|
||||||
|
;;; resulting executable to be covered by the GNU General Public License.
|
||||||
|
;;; Your use of that executable is in no way restricted on account of
|
||||||
|
;;; linking the GUILE library code into it.
|
||||||
|
;;;
|
||||||
|
;;; This exception does not however invalidate any other reasons why
|
||||||
|
;;; the executable file might be covered by the GNU General Public License.
|
||||||
|
;;;
|
||||||
|
;;; This exception applies only to the code released by the
|
||||||
|
;;; Free Software Foundation under the name GUILE. If you copy
|
||||||
|
;;; code from other Free Software Foundation releases into a copy of
|
||||||
|
;;; GUILE, as the General Public License permits, the exception does
|
||||||
|
;;; not apply to the code that you add in this way. To avoid misleading
|
||||||
|
;;; anyone as to the status of such modified files, you must delete
|
||||||
|
;;; this exception notice from them.
|
||||||
|
;;;
|
||||||
|
;;; If you write modifications of your own for GUILE, it is your choice
|
||||||
|
;;; whether to permit this exception to apply to your modifications.
|
||||||
|
;;; If you do not wish that, delete this exception notice.
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,30 @@
|
||||||
;;; along with this software; see the file COPYING. If not, write to
|
;;; along with this software; see the file COPYING. If not, write to
|
||||||
;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
;;; Boston, MA 02111-1307 USA
|
;;; Boston, MA 02111-1307 USA
|
||||||
|
;;;
|
||||||
|
;;; As a special exception, the Free Software Foundation gives permission
|
||||||
|
;;; for additional uses of the text contained in its release of GUILE.
|
||||||
|
;;;
|
||||||
|
;;; The exception is that, if you link the GUILE library with other files
|
||||||
|
;;; to produce an executable, this does not by itself cause the
|
||||||
|
;;; resulting executable to be covered by the GNU General Public License.
|
||||||
|
;;; Your use of that executable is in no way restricted on account of
|
||||||
|
;;; linking the GUILE library code into it.
|
||||||
|
;;;
|
||||||
|
;;; This exception does not however invalidate any other reasons why
|
||||||
|
;;; the executable file might be covered by the GNU General Public License.
|
||||||
|
;;;
|
||||||
|
;;; This exception applies only to the code released by the
|
||||||
|
;;; Free Software Foundation under the name GUILE. If you copy
|
||||||
|
;;; code from other Free Software Foundation releases into a copy of
|
||||||
|
;;; GUILE, as the General Public License permits, the exception does
|
||||||
|
;;; not apply to the code that you add in this way. To avoid misleading
|
||||||
|
;;; anyone as to the status of such modified files, you must delete
|
||||||
|
;;; this exception notice from them.
|
||||||
|
;;;
|
||||||
|
;;; If you write modifications of your own for GUILE, it is your choice
|
||||||
|
;;; whether to permit this exception to apply to your modifications.
|
||||||
|
;;; If you do not wish that, delete this exception notice.
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,30 @@
|
||||||
;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
;;; Boston, MA 02111-1307 USA
|
;;; Boston, MA 02111-1307 USA
|
||||||
;;;
|
;;;
|
||||||
|
;;; As a special exception, the Free Software Foundation gives permission
|
||||||
|
;;; for additional uses of the text contained in its release of GUILE.
|
||||||
|
;;;
|
||||||
|
;;; The exception is that, if you link the GUILE library with other files
|
||||||
|
;;; to produce an executable, this does not by itself cause the
|
||||||
|
;;; resulting executable to be covered by the GNU General Public License.
|
||||||
|
;;; Your use of that executable is in no way restricted on account of
|
||||||
|
;;; linking the GUILE library code into it.
|
||||||
|
;;;
|
||||||
|
;;; This exception does not however invalidate any other reasons why
|
||||||
|
;;; the executable file might be covered by the GNU General Public License.
|
||||||
|
;;;
|
||||||
|
;;; This exception applies only to the code released by the
|
||||||
|
;;; Free Software Foundation under the name GUILE. If you copy
|
||||||
|
;;; code from other Free Software Foundation releases into a copy of
|
||||||
|
;;; GUILE, as the General Public License permits, the exception does
|
||||||
|
;;; not apply to the code that you add in this way. To avoid misleading
|
||||||
|
;;; anyone as to the status of such modified files, you must delete
|
||||||
|
;;; this exception notice from them.
|
||||||
|
;;;
|
||||||
|
;;; If you write modifications of your own for GUILE, it is your choice
|
||||||
|
;;; whether to permit this exception to apply to your modifications.
|
||||||
|
;;; If you do not wish that, delete this exception notice.
|
||||||
|
;;;
|
||||||
;;; Originally from SRFI reference implementation by Will Fitzgerald.
|
;;; Originally from SRFI reference implementation by Will Fitzgerald.
|
||||||
;;; Ported to Guile by Rob Browning <rlb@cs.utexas.edu>
|
;;; Ported to Guile by Rob Browning <rlb@cs.utexas.edu>
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,30 @@
|
||||||
;;;; along with this software; see the file COPYING. If not, write to
|
;;;; along with this software; see the file COPYING. If not, write to
|
||||||
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
;;;; Boston, MA 02111-1307 USA
|
;;;; Boston, MA 02111-1307 USA
|
||||||
|
;;;;
|
||||||
|
;;;; As a special exception, the Free Software Foundation gives permission
|
||||||
|
;;;; for additional uses of the text contained in its release of GUILE.
|
||||||
|
;;;;
|
||||||
|
;;;; The exception is that, if you link the GUILE library with other files
|
||||||
|
;;;; to produce an executable, this does not by itself cause the
|
||||||
|
;;;; resulting executable to be covered by the GNU General Public License.
|
||||||
|
;;;; Your use of that executable is in no way restricted on account of
|
||||||
|
;;;; linking the GUILE library code into it.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception does not however invalidate any other reasons why
|
||||||
|
;;;; the executable file might be covered by the GNU General Public License.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception applies only to the code released by the
|
||||||
|
;;;; Free Software Foundation under the name GUILE. If you copy
|
||||||
|
;;;; code from other Free Software Foundation releases into a copy of
|
||||||
|
;;;; GUILE, as the General Public License permits, the exception does
|
||||||
|
;;;; not apply to the code that you add in this way. To avoid misleading
|
||||||
|
;;;; anyone as to the status of such modified files, you must delete
|
||||||
|
;;;; this exception notice from them.
|
||||||
|
;;;;
|
||||||
|
;;;; If you write modifications of your own for GUILE, it is your choice
|
||||||
|
;;;; whether to permit this exception to apply to your modifications.
|
||||||
|
;;;; If you do not wish that, delete this exception notice.
|
||||||
|
|
||||||
(define-module (srfi srfi-2)
|
(define-module (srfi srfi-2)
|
||||||
:use-module (ice-9 and-let-star))
|
:use-module (ice-9 and-let-star))
|
||||||
|
|
|
@ -16,6 +16,30 @@
|
||||||
;;;; along with this software; see the file COPYING. If not, write to
|
;;;; along with this software; see the file COPYING. If not, write to
|
||||||
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
;;;; Boston, MA 02111-1307 USA
|
;;;; Boston, MA 02111-1307 USA
|
||||||
|
;;;;
|
||||||
|
;;;; As a special exception, the Free Software Foundation gives permission
|
||||||
|
;;;; for additional uses of the text contained in its release of GUILE.
|
||||||
|
;;;;
|
||||||
|
;;;; The exception is that, if you link the GUILE library with other files
|
||||||
|
;;;; to produce an executable, this does not by itself cause the
|
||||||
|
;;;; resulting executable to be covered by the GNU General Public License.
|
||||||
|
;;;; Your use of that executable is in no way restricted on account of
|
||||||
|
;;;; linking the GUILE library code into it.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception does not however invalidate any other reasons why
|
||||||
|
;;;; the executable file might be covered by the GNU General Public License.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception applies only to the code released by the
|
||||||
|
;;;; Free Software Foundation under the name GUILE. If you copy
|
||||||
|
;;;; code from other Free Software Foundation releases into a copy of
|
||||||
|
;;;; GUILE, as the General Public License permits, the exception does
|
||||||
|
;;;; not apply to the code that you add in this way. To avoid misleading
|
||||||
|
;;;; anyone as to the status of such modified files, you must delete
|
||||||
|
;;;; this exception notice from them.
|
||||||
|
;;;;
|
||||||
|
;;;; If you write modifications of your own for GUILE, it is your choice
|
||||||
|
;;;; whether to permit this exception to apply to your modifications.
|
||||||
|
;;;; If you do not wish that, delete this exception notice.
|
||||||
|
|
||||||
(define-module (srfi srfi-6))
|
(define-module (srfi srfi-6))
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,30 @@
|
||||||
;;; along with this software; see the file COPYING. If not, write to
|
;;; along with this software; see the file COPYING. If not, write to
|
||||||
;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
;;; Boston, MA 02111-1307 USA
|
;;; Boston, MA 02111-1307 USA
|
||||||
|
;;;
|
||||||
|
;;; As a special exception, the Free Software Foundation gives permission
|
||||||
|
;;; for additional uses of the text contained in its release of GUILE.
|
||||||
|
;;;
|
||||||
|
;;; The exception is that, if you link the GUILE library with other files
|
||||||
|
;;; to produce an executable, this does not by itself cause the
|
||||||
|
;;; resulting executable to be covered by the GNU General Public License.
|
||||||
|
;;; Your use of that executable is in no way restricted on account of
|
||||||
|
;;; linking the GUILE library code into it.
|
||||||
|
;;;
|
||||||
|
;;; This exception does not however invalidate any other reasons why
|
||||||
|
;;; the executable file might be covered by the GNU General Public License.
|
||||||
|
;;;
|
||||||
|
;;; This exception applies only to the code released by the
|
||||||
|
;;; Free Software Foundation under the name GUILE. If you copy
|
||||||
|
;;; code from other Free Software Foundation releases into a copy of
|
||||||
|
;;; GUILE, as the General Public License permits, the exception does
|
||||||
|
;;; not apply to the code that you add in this way. To avoid misleading
|
||||||
|
;;; anyone as to the status of such modified files, you must delete
|
||||||
|
;;; this exception notice from them.
|
||||||
|
;;;
|
||||||
|
;;; If you write modifications of your own for GUILE, it is your choice
|
||||||
|
;;; whether to permit this exception to apply to your modifications.
|
||||||
|
;;; If you do not wish that, delete this exception notice.
|
||||||
|
|
||||||
(define-module (srfi srfi-8)
|
(define-module (srfi srfi-8)
|
||||||
:use-module (ice-9 receive))
|
:use-module (ice-9 receive))
|
||||||
|
|
|
@ -16,6 +16,30 @@
|
||||||
;;;; along with this software; see the file COPYING. If not, write to
|
;;;; along with this software; see the file COPYING. If not, write to
|
||||||
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||||
;;;; Boston, MA 02111-1307 USA
|
;;;; Boston, MA 02111-1307 USA
|
||||||
|
;;;;
|
||||||
|
;;;; As a special exception, the Free Software Foundation gives permission
|
||||||
|
;;;; for additional uses of the text contained in its release of GUILE.
|
||||||
|
;;;;
|
||||||
|
;;;; The exception is that, if you link the GUILE library with other files
|
||||||
|
;;;; to produce an executable, this does not by itself cause the
|
||||||
|
;;;; resulting executable to be covered by the GNU General Public License.
|
||||||
|
;;;; Your use of that executable is in no way restricted on account of
|
||||||
|
;;;; linking the GUILE library code into it.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception does not however invalidate any other reasons why
|
||||||
|
;;;; the executable file might be covered by the GNU General Public License.
|
||||||
|
;;;;
|
||||||
|
;;;; This exception applies only to the code released by the
|
||||||
|
;;;; Free Software Foundation under the name GUILE. If you copy
|
||||||
|
;;;; code from other Free Software Foundation releases into a copy of
|
||||||
|
;;;; GUILE, as the General Public License permits, the exception does
|
||||||
|
;;;; not apply to the code that you add in this way. To avoid misleading
|
||||||
|
;;;; anyone as to the status of such modified files, you must delete
|
||||||
|
;;;; this exception notice from them.
|
||||||
|
;;;;
|
||||||
|
;;;; If you write modifications of your own for GUILE, it is your choice
|
||||||
|
;;;; whether to permit this exception to apply to your modifications.
|
||||||
|
;;;; If you do not wish that, delete this exception notice.
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue