summaryrefslogtreecommitdiff
path: root/libguile/__scm.h
diff options
context:
space:
mode:
authorDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2003-06-04 05:28:34 +0000
committerDirk Herrmann <dirk@dirk-herrmanns-seiten.de>2003-06-04 05:28:34 +0000
commitd0624e391be5f644a301e31df9ea54386e2cd7e5 (patch)
treebd5ba87eec78919116d37505e01caa294ce24ef4 /libguile/__scm.h
parente90c3a895d37efba2a31995ec85984ec205db974 (diff)
downloadguile-d0624e391be5f644a301e31df9ea54386e2cd7e5.tar.gz
* __scm.h, gc-card.c (SCM_DEBUG_DEBUGGER_SUPPORT,
SCM_DEBUG_DEBUGGING_SUPPORT): Renamed macro SCM_DEBUG_DEBUGGER_SUPPORT to SCM_DEBUG_DEBUGGING_SUPPORT and generalized it to apply not only to C level functions but also to scheme level functions. * debug.c, debug.h, eval.c (make-iloc, scm_make_iloc, iloc?, scm_iloc_p, dbg-make-iloc, scm_dbg_make_iloc, dbg-iloc?, scm_dbg_iloc_p): Moved functions scm_make_iloc, scm_iloc_p to eval.c, made them available under SCM_DEBUG_DEBUGGING_SUPPORT == 1 only and renamed them to scm_dbg_make_iloc, scm_dbg_iloc_p, respectively. * deprecated.h, eval.c, eval.h (SCM_ILOC00, SCM_IDINC, SCM_IDSTMSK): Deprecated. The macro definitions are moved from eval.h into eval.c and a copy is placed into deprecated.h. * eval.c, eval.h (SCM_MAKE_ILOC): Removed from eval.h and placed into eval.c. This definition was not part of the API in any officially released version of guile and thus does not need to go through a phase of deprecation.
Diffstat (limited to 'libguile/__scm.h')
-rw-r--r--libguile/__scm.h25
1 files changed, 13 insertions, 12 deletions
diff --git a/libguile/__scm.h b/libguile/__scm.h
index a2cf5de71..94113496b 100644
--- a/libguile/__scm.h
+++ b/libguile/__scm.h
@@ -256,19 +256,20 @@
#define SCM_DEBUG_TYPING_STRICTNESS 1
#endif
-/* If SCM_DEBUG_DEBUGGER_SUPPORT is set to 1, guile will provide a set of
- * special functions that support debugging with a debugger like gdb. The
- * behaviour of guile is not changed by this macro, only the set of functions
- * that are available will differ. All functions that are introduced this way
- * have the prefix 'scm_dbg_'. This allows to easily determine the set of
- * support functions, given that your debugger provides automatic name
- * completion. Note that these functions are intended to be used during
- * interactive debugging sessions only. They are not considered part of
- * guile's official API. They may change or disappear without notice or
- * deprecation phase.
+/* If SCM_DEBUG_DEBUGGING_SUPPORT is set to 1, guile will provide a set of
+ * special functions that support debugging with a debugger like gdb or
+ * debugging of guile internals on the scheme level. The behaviour of guile
+ * is not changed by this macro, only the set of functions that are available
+ * will differ. All functions that are introduced this way have the prefix
+ * 'scm_dbg_' on the C level and the prefix 'dbg-' on the scheme level. This
+ * allows to easily determine the set of support functions, given that your
+ * debugger or repl provide automatic name completion. Note that these
+ * functions are intended to be used during interactive debugging sessions
+ * only. They are not considered part of guile's official API. They may
+ * change or disappear without notice or deprecation phase.
*/
-#ifndef SCM_DEBUG_DEBUGGER_SUPPORT
-#define SCM_DEBUG_DEBUGGER_SUPPORT SCM_DEBUG
+#ifndef SCM_DEBUG_DEBUGGING_SUPPORT
+#define SCM_DEBUG_DEBUGGING_SUPPORT SCM_DEBUG
#endif