summaryrefslogtreecommitdiff
path: root/libguile/debug.c
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-03-08 23:04:06 +0100
committerLudovic Courtès <ludo@gnu.org>2009-03-08 23:04:06 +0100
commitf307fbcec2cbaaa95b8c861395133b519c7519cf (patch)
tree8f08599fb60cfdcd98de0f03a465e70e962112bd /libguile/debug.c
parent1eefa363bd7f0db07a907c773c890b78ff6415a9 (diff)
parent6c59f901499937fe3779ef1f543646754f843679 (diff)
downloadguile-f307fbcec2cbaaa95b8c861395133b519c7519cf.tar.gz
Merge branch 'master' into boehm-demers-weiser-gc
Conflicts: libguile/gc-card.c libguile/gc-mark.c
Diffstat (limited to 'libguile/debug.c')
-rw-r--r--libguile/debug.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/libguile/debug.c b/libguile/debug.c
index 91ba3fed8..a8ccdf8d3 100644
--- a/libguile/debug.c
+++ b/libguile/debug.c
@@ -1,5 +1,5 @@
/* Debugging extensions for Guile
- * Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2006, 2008 Free Software Foundation
+ * Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2006, 2008, 2009 Free Software Foundation
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -352,9 +352,6 @@ SCM_DEFINE (scm_procedure_source, "procedure-source", 1, 0, 0,
if (!SCM_SMOB_DESCRIPTOR (proc).apply)
break;
case scm_tcs_subrs:
-#ifdef CCLO
- case scm_tc7_cclo:
-#endif
procprop:
/* It would indeed be a nice thing if we supplied source even for
built in procedures! */
@@ -385,9 +382,6 @@ SCM_DEFINE (scm_procedure_environment, "procedure-environment", 1, 0, 0,
case scm_tcs_closures:
return SCM_ENV (proc);
case scm_tcs_subrs:
-#ifdef CCLO
- case scm_tc7_cclo:
-#endif
return SCM_EOL;
default:
SCM_WRONG_TYPE_ARG (1, proc);