diff options
author | Andy Wingo <wingo@pobox.com> | 2011-05-15 10:54:00 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-05-15 15:34:15 +0200 |
commit | 2572c8067310d3cf5fc0dd61672c9bf2b2ac48db (patch) | |
tree | 0190620f2400dbdf674e2643f3335b032763fc2a | |
parent | 412ccea6c986da28b28f4b822483f779263eb138 (diff) | |
download | guile-2572c8067310d3cf5fc0dd61672c9bf2b2ac48db.tar.gz |
remove SICP from __scm.h
* libguile/__scm.h: Remove #undef SICP.
* libguile/feature.c (scm_init_feature): Never add the sicp feature.
-rw-r--r-- | libguile/__scm.h | 11 | ||||
-rw-r--r-- | libguile/feature.c | 5 |
2 files changed, 1 insertions, 15 deletions
diff --git a/libguile/__scm.h b/libguile/__scm.h index 810396420..d0e979831 100644 --- a/libguile/__scm.h +++ b/libguile/__scm.h @@ -154,17 +154,6 @@ -/* {Unsupported Options} - * - * These must be defined as given here. - */ - - -/* Guile Scheme supports the #f/() distinction; Guile Lisp won't. We - have horrible plans for their unification. */ -#undef SICP - - /* Random options (not yet supported or in final form). */ diff --git a/libguile/feature.c b/libguile/feature.c index 700740319..98388af17 100644 --- a/libguile/feature.c +++ b/libguile/feature.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995,1996,1998,1999,2000,2001,2002, 2003, 2004, 2006, 2007, 2009 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,1998,1999,2000,2001,2002, 2003, 2004, 2006, 2007, 2009, 2011 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -108,9 +108,6 @@ scm_init_feature() #ifdef vms scm_add_feature(s_ed); #endif -#ifdef SICP - scm_add_feature("sicp"); -#endif #ifndef GO32 scm_add_feature("char-ready?"); #endif |